@meshery/schemas 1.3.19 → 1.3.20

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.
@@ -257,18 +257,130 @@ export interface components {
257
257
  /** @description Teams the user belongs to with role information */
258
258
  teams?: {
259
259
  /** @description Team memberships for the user with their assigned roles. */
260
- teams_with_roles?: Record<string, never>[];
260
+ teams_with_roles?: {
261
+ /**
262
+ * Format: uuid
263
+ * @description Unique identifier of the team.
264
+ */
265
+ id: string;
266
+ /** @description Name of the team. */
267
+ name: string;
268
+ /** @description Human readable description of the team. */
269
+ description?: string;
270
+ /**
271
+ * Format: uuid
272
+ * @description Identifier of the team owner.
273
+ */
274
+ owner?: string;
275
+ /**
276
+ * Format: date-time
277
+ * @description Timestamp when the team was created.
278
+ */
279
+ created_at?: string;
280
+ /**
281
+ * Format: date-time
282
+ * @description Timestamp when the team was last updated.
283
+ */
284
+ updated_at?: string;
285
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
286
+ role_names: string[];
287
+ }[];
261
288
  /** @description Total number of team memberships returned for the user. */
262
289
  total_count?: number;
263
290
  };
264
291
  /** @description Organizations the user belongs to with role information */
265
292
  organizations?: {
266
293
  /** @description Organization memberships for the user with their assigned roles. */
267
- organizations_with_roles?: Record<string, never>[];
294
+ organizations_with_roles?: {
295
+ /**
296
+ * Format: uuid
297
+ * @description Unique identifier of the organization.
298
+ */
299
+ id: string;
300
+ /** @description Name of the organization. */
301
+ name: string;
302
+ /** @description Human readable description of the organization. */
303
+ description?: string;
304
+ /**
305
+ * Format: uuid
306
+ * @description Identifier of the organization owner.
307
+ */
308
+ owner?: string;
309
+ /**
310
+ * Format: date-time
311
+ * @description Timestamp when the organization was created.
312
+ */
313
+ created_at?: string;
314
+ /**
315
+ * Format: date-time
316
+ * @description Timestamp when the organization was last updated.
317
+ */
318
+ updated_at?: string;
319
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
320
+ role_names: string[];
321
+ }[];
268
322
  /** @description Total number of organization memberships returned for the user. */
269
323
  total_count?: number;
270
324
  };
271
325
  };
326
+ /** @description A team the user is a member of, together with the names of the roles assigned to that user within the team. Returned as an item of User.teams.teams_with_roles. The role names are dynamic, user-generated values (no fixed enumeration). */
327
+ TeamWithRoles: {
328
+ /**
329
+ * Format: uuid
330
+ * @description Unique identifier of the team.
331
+ */
332
+ id: string;
333
+ /** @description Name of the team. */
334
+ name: string;
335
+ /** @description Human readable description of the team. */
336
+ description?: string;
337
+ /**
338
+ * Format: uuid
339
+ * @description Identifier of the team owner.
340
+ */
341
+ owner?: string;
342
+ /**
343
+ * Format: date-time
344
+ * @description Timestamp when the team was created.
345
+ */
346
+ created_at?: string;
347
+ /**
348
+ * Format: date-time
349
+ * @description Timestamp when the team was last updated.
350
+ */
351
+ updated_at?: string;
352
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
353
+ role_names: string[];
354
+ };
355
+ /** @description An organization the user is a member of, together with the names of the roles assigned to that user within the organization. Returned as an item of User.organizations.organizations_with_roles. The role names are dynamic, user-generated values (no fixed enumeration). */
356
+ OrganizationWithRoles: {
357
+ /**
358
+ * Format: uuid
359
+ * @description Unique identifier of the organization.
360
+ */
361
+ id: string;
362
+ /** @description Name of the organization. */
363
+ name: string;
364
+ /** @description Human readable description of the organization. */
365
+ description?: string;
366
+ /**
367
+ * Format: uuid
368
+ * @description Identifier of the organization owner.
369
+ */
370
+ owner?: string;
371
+ /**
372
+ * Format: date-time
373
+ * @description Timestamp when the organization was created.
374
+ */
375
+ created_at?: string;
376
+ /**
377
+ * Format: date-time
378
+ * @description Timestamp when the organization was last updated.
379
+ */
380
+ updated_at?: string;
381
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
382
+ role_names: string[];
383
+ };
272
384
  /** @description Paginated list of users with organization and team role context */
273
385
  UsersPageForAdmin: {
274
386
  /** @description Current page number of the result set. */
@@ -452,14 +564,68 @@ export interface components {
452
564
  /** @description Teams the user belongs to with role information */
453
565
  teams?: {
454
566
  /** @description Team memberships for the user with their assigned roles. */
455
- teams_with_roles?: Record<string, never>[];
567
+ teams_with_roles?: {
568
+ /**
569
+ * Format: uuid
570
+ * @description Unique identifier of the team.
571
+ */
572
+ id: string;
573
+ /** @description Name of the team. */
574
+ name: string;
575
+ /** @description Human readable description of the team. */
576
+ description?: string;
577
+ /**
578
+ * Format: uuid
579
+ * @description Identifier of the team owner.
580
+ */
581
+ owner?: string;
582
+ /**
583
+ * Format: date-time
584
+ * @description Timestamp when the team was created.
585
+ */
586
+ created_at?: string;
587
+ /**
588
+ * Format: date-time
589
+ * @description Timestamp when the team was last updated.
590
+ */
591
+ updated_at?: string;
592
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
593
+ role_names: string[];
594
+ }[];
456
595
  /** @description Total number of team memberships returned for the user. */
457
596
  total_count?: number;
458
597
  };
459
598
  /** @description Organizations the user belongs to with role information */
460
599
  organizations?: {
461
600
  /** @description Organization memberships for the user with their assigned roles. */
462
- organizations_with_roles?: Record<string, never>[];
601
+ organizations_with_roles?: {
602
+ /**
603
+ * Format: uuid
604
+ * @description Unique identifier of the organization.
605
+ */
606
+ id: string;
607
+ /** @description Name of the organization. */
608
+ name: string;
609
+ /** @description Human readable description of the organization. */
610
+ description?: string;
611
+ /**
612
+ * Format: uuid
613
+ * @description Identifier of the organization owner.
614
+ */
615
+ owner?: string;
616
+ /**
617
+ * Format: date-time
618
+ * @description Timestamp when the organization was created.
619
+ */
620
+ created_at?: string;
621
+ /**
622
+ * Format: date-time
623
+ * @description Timestamp when the organization was last updated.
624
+ */
625
+ updated_at?: string;
626
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
627
+ role_names: string[];
628
+ }[];
463
629
  /** @description Total number of organization memberships returned for the user. */
464
630
  total_count?: number;
465
631
  };
@@ -648,14 +814,68 @@ export interface components {
648
814
  /** @description Teams the user belongs to with role information */
649
815
  teams?: {
650
816
  /** @description Team memberships for the user with their assigned roles. */
651
- teams_with_roles?: Record<string, never>[];
817
+ teams_with_roles?: {
818
+ /**
819
+ * Format: uuid
820
+ * @description Unique identifier of the team.
821
+ */
822
+ id: string;
823
+ /** @description Name of the team. */
824
+ name: string;
825
+ /** @description Human readable description of the team. */
826
+ description?: string;
827
+ /**
828
+ * Format: uuid
829
+ * @description Identifier of the team owner.
830
+ */
831
+ owner?: string;
832
+ /**
833
+ * Format: date-time
834
+ * @description Timestamp when the team was created.
835
+ */
836
+ created_at?: string;
837
+ /**
838
+ * Format: date-time
839
+ * @description Timestamp when the team was last updated.
840
+ */
841
+ updated_at?: string;
842
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
843
+ role_names: string[];
844
+ }[];
652
845
  /** @description Total number of team memberships returned for the user. */
653
846
  total_count?: number;
654
847
  };
655
848
  /** @description Organizations the user belongs to with role information */
656
849
  organizations?: {
657
850
  /** @description Organization memberships for the user with their assigned roles. */
658
- organizations_with_roles?: Record<string, never>[];
851
+ organizations_with_roles?: {
852
+ /**
853
+ * Format: uuid
854
+ * @description Unique identifier of the organization.
855
+ */
856
+ id: string;
857
+ /** @description Name of the organization. */
858
+ name: string;
859
+ /** @description Human readable description of the organization. */
860
+ description?: string;
861
+ /**
862
+ * Format: uuid
863
+ * @description Identifier of the organization owner.
864
+ */
865
+ owner?: string;
866
+ /**
867
+ * Format: date-time
868
+ * @description Timestamp when the organization was created.
869
+ */
870
+ created_at?: string;
871
+ /**
872
+ * Format: date-time
873
+ * @description Timestamp when the organization was last updated.
874
+ */
875
+ updated_at?: string;
876
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
877
+ role_names: string[];
878
+ }[];
659
879
  /** @description Total number of organization memberships returned for the user. */
660
880
  total_count?: number;
661
881
  };
@@ -1071,14 +1291,68 @@ export interface operations {
1071
1291
  /** @description Teams the user belongs to with role information */
1072
1292
  teams?: {
1073
1293
  /** @description Team memberships for the user with their assigned roles. */
1074
- teams_with_roles?: Record<string, never>[];
1294
+ teams_with_roles?: {
1295
+ /**
1296
+ * Format: uuid
1297
+ * @description Unique identifier of the team.
1298
+ */
1299
+ id: string;
1300
+ /** @description Name of the team. */
1301
+ name: string;
1302
+ /** @description Human readable description of the team. */
1303
+ description?: string;
1304
+ /**
1305
+ * Format: uuid
1306
+ * @description Identifier of the team owner.
1307
+ */
1308
+ owner?: string;
1309
+ /**
1310
+ * Format: date-time
1311
+ * @description Timestamp when the team was created.
1312
+ */
1313
+ created_at?: string;
1314
+ /**
1315
+ * Format: date-time
1316
+ * @description Timestamp when the team was last updated.
1317
+ */
1318
+ updated_at?: string;
1319
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
1320
+ role_names: string[];
1321
+ }[];
1075
1322
  /** @description Total number of team memberships returned for the user. */
1076
1323
  total_count?: number;
1077
1324
  };
1078
1325
  /** @description Organizations the user belongs to with role information */
1079
1326
  organizations?: {
1080
1327
  /** @description Organization memberships for the user with their assigned roles. */
1081
- organizations_with_roles?: Record<string, never>[];
1328
+ organizations_with_roles?: {
1329
+ /**
1330
+ * Format: uuid
1331
+ * @description Unique identifier of the organization.
1332
+ */
1333
+ id: string;
1334
+ /** @description Name of the organization. */
1335
+ name: string;
1336
+ /** @description Human readable description of the organization. */
1337
+ description?: string;
1338
+ /**
1339
+ * Format: uuid
1340
+ * @description Identifier of the organization owner.
1341
+ */
1342
+ owner?: string;
1343
+ /**
1344
+ * Format: date-time
1345
+ * @description Timestamp when the organization was created.
1346
+ */
1347
+ created_at?: string;
1348
+ /**
1349
+ * Format: date-time
1350
+ * @description Timestamp when the organization was last updated.
1351
+ */
1352
+ updated_at?: string;
1353
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
1354
+ role_names: string[];
1355
+ }[];
1082
1356
  /** @description Total number of organization memberships returned for the user. */
1083
1357
  total_count?: number;
1084
1358
  };
@@ -1332,14 +1606,68 @@ export interface operations {
1332
1606
  /** @description Teams the user belongs to with role information */
1333
1607
  teams?: {
1334
1608
  /** @description Team memberships for the user with their assigned roles. */
1335
- teams_with_roles?: Record<string, never>[];
1609
+ teams_with_roles?: {
1610
+ /**
1611
+ * Format: uuid
1612
+ * @description Unique identifier of the team.
1613
+ */
1614
+ id: string;
1615
+ /** @description Name of the team. */
1616
+ name: string;
1617
+ /** @description Human readable description of the team. */
1618
+ description?: string;
1619
+ /**
1620
+ * Format: uuid
1621
+ * @description Identifier of the team owner.
1622
+ */
1623
+ owner?: string;
1624
+ /**
1625
+ * Format: date-time
1626
+ * @description Timestamp when the team was created.
1627
+ */
1628
+ created_at?: string;
1629
+ /**
1630
+ * Format: date-time
1631
+ * @description Timestamp when the team was last updated.
1632
+ */
1633
+ updated_at?: string;
1634
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
1635
+ role_names: string[];
1636
+ }[];
1336
1637
  /** @description Total number of team memberships returned for the user. */
1337
1638
  total_count?: number;
1338
1639
  };
1339
1640
  /** @description Organizations the user belongs to with role information */
1340
1641
  organizations?: {
1341
1642
  /** @description Organization memberships for the user with their assigned roles. */
1342
- organizations_with_roles?: Record<string, never>[];
1643
+ organizations_with_roles?: {
1644
+ /**
1645
+ * Format: uuid
1646
+ * @description Unique identifier of the organization.
1647
+ */
1648
+ id: string;
1649
+ /** @description Name of the organization. */
1650
+ name: string;
1651
+ /** @description Human readable description of the organization. */
1652
+ description?: string;
1653
+ /**
1654
+ * Format: uuid
1655
+ * @description Identifier of the organization owner.
1656
+ */
1657
+ owner?: string;
1658
+ /**
1659
+ * Format: date-time
1660
+ * @description Timestamp when the organization was created.
1661
+ */
1662
+ created_at?: string;
1663
+ /**
1664
+ * Format: date-time
1665
+ * @description Timestamp when the organization was last updated.
1666
+ */
1667
+ updated_at?: string;
1668
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
1669
+ role_names: string[];
1670
+ }[];
1343
1671
  /** @description Total number of organization memberships returned for the user. */
1344
1672
  total_count?: number;
1345
1673
  };
@@ -1568,14 +1896,68 @@ export interface operations {
1568
1896
  /** @description Teams the user belongs to with role information */
1569
1897
  teams?: {
1570
1898
  /** @description Team memberships for the user with their assigned roles. */
1571
- teams_with_roles?: Record<string, never>[];
1899
+ teams_with_roles?: {
1900
+ /**
1901
+ * Format: uuid
1902
+ * @description Unique identifier of the team.
1903
+ */
1904
+ id: string;
1905
+ /** @description Name of the team. */
1906
+ name: string;
1907
+ /** @description Human readable description of the team. */
1908
+ description?: string;
1909
+ /**
1910
+ * Format: uuid
1911
+ * @description Identifier of the team owner.
1912
+ */
1913
+ owner?: string;
1914
+ /**
1915
+ * Format: date-time
1916
+ * @description Timestamp when the team was created.
1917
+ */
1918
+ created_at?: string;
1919
+ /**
1920
+ * Format: date-time
1921
+ * @description Timestamp when the team was last updated.
1922
+ */
1923
+ updated_at?: string;
1924
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
1925
+ role_names: string[];
1926
+ }[];
1572
1927
  /** @description Total number of team memberships returned for the user. */
1573
1928
  total_count?: number;
1574
1929
  };
1575
1930
  /** @description Organizations the user belongs to with role information */
1576
1931
  organizations?: {
1577
1932
  /** @description Organization memberships for the user with their assigned roles. */
1578
- organizations_with_roles?: Record<string, never>[];
1933
+ organizations_with_roles?: {
1934
+ /**
1935
+ * Format: uuid
1936
+ * @description Unique identifier of the organization.
1937
+ */
1938
+ id: string;
1939
+ /** @description Name of the organization. */
1940
+ name: string;
1941
+ /** @description Human readable description of the organization. */
1942
+ description?: string;
1943
+ /**
1944
+ * Format: uuid
1945
+ * @description Identifier of the organization owner.
1946
+ */
1947
+ owner?: string;
1948
+ /**
1949
+ * Format: date-time
1950
+ * @description Timestamp when the organization was created.
1951
+ */
1952
+ created_at?: string;
1953
+ /**
1954
+ * Format: date-time
1955
+ * @description Timestamp when the organization was last updated.
1956
+ */
1957
+ updated_at?: string;
1958
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
1959
+ role_names: string[];
1960
+ }[];
1579
1961
  /** @description Total number of organization memberships returned for the user. */
1580
1962
  total_count?: number;
1581
1963
  };
@@ -1809,14 +2191,68 @@ export interface operations {
1809
2191
  /** @description Teams the user belongs to with role information */
1810
2192
  teams?: {
1811
2193
  /** @description Team memberships for the user with their assigned roles. */
1812
- teams_with_roles?: Record<string, never>[];
2194
+ teams_with_roles?: {
2195
+ /**
2196
+ * Format: uuid
2197
+ * @description Unique identifier of the team.
2198
+ */
2199
+ id: string;
2200
+ /** @description Name of the team. */
2201
+ name: string;
2202
+ /** @description Human readable description of the team. */
2203
+ description?: string;
2204
+ /**
2205
+ * Format: uuid
2206
+ * @description Identifier of the team owner.
2207
+ */
2208
+ owner?: string;
2209
+ /**
2210
+ * Format: date-time
2211
+ * @description Timestamp when the team was created.
2212
+ */
2213
+ created_at?: string;
2214
+ /**
2215
+ * Format: date-time
2216
+ * @description Timestamp when the team was last updated.
2217
+ */
2218
+ updated_at?: string;
2219
+ /** @description Names of the roles assigned to the user within this team. Free-form, user-generated role names; not a fixed enumeration. */
2220
+ role_names: string[];
2221
+ }[];
1813
2222
  /** @description Total number of team memberships returned for the user. */
1814
2223
  total_count?: number;
1815
2224
  };
1816
2225
  /** @description Organizations the user belongs to with role information */
1817
2226
  organizations?: {
1818
2227
  /** @description Organization memberships for the user with their assigned roles. */
1819
- organizations_with_roles?: Record<string, never>[];
2228
+ organizations_with_roles?: {
2229
+ /**
2230
+ * Format: uuid
2231
+ * @description Unique identifier of the organization.
2232
+ */
2233
+ id: string;
2234
+ /** @description Name of the organization. */
2235
+ name: string;
2236
+ /** @description Human readable description of the organization. */
2237
+ description?: string;
2238
+ /**
2239
+ * Format: uuid
2240
+ * @description Identifier of the organization owner.
2241
+ */
2242
+ owner?: string;
2243
+ /**
2244
+ * Format: date-time
2245
+ * @description Timestamp when the organization was created.
2246
+ */
2247
+ created_at?: string;
2248
+ /**
2249
+ * Format: date-time
2250
+ * @description Timestamp when the organization was last updated.
2251
+ */
2252
+ updated_at?: string;
2253
+ /** @description Names of the roles assigned to the user within this organization. Free-form, user-generated role names; not a fixed enumeration. */
2254
+ role_names: string[];
2255
+ }[];
1820
2256
  /** @description Total number of organization memberships returned for the user. */
1821
2257
  total_count?: number;
1822
2258
  };