@meshery/schemas 0.8.122 → 0.8.124
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/cloudApi.d.mts +2734 -809
- package/dist/cloudApi.d.ts +2734 -809
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta1/organization/Organization.d.mts +209 -0
- package/dist/constructs/v1beta1/organization/Organization.d.ts +209 -0
- package/dist/constructs/v1beta1/organization/OrganizationSchema.d.mts +729 -0
- package/dist/constructs/v1beta1/organization/OrganizationSchema.d.ts +729 -0
- package/dist/constructs/v1beta1/organization/OrganizationSchema.js +1 -1
- package/dist/constructs/v1beta1/organization/OrganizationSchema.mjs +1 -1
- package/dist/constructs/v1beta1/team/Team.d.mts +719 -0
- package/dist/constructs/v1beta1/team/Team.d.ts +719 -0
- package/dist/constructs/v1beta1/team/Team.js +1 -0
- package/dist/constructs/v1beta1/team/Team.mjs +0 -0
- package/dist/constructs/v1beta1/team/TeamSchema.d.mts +2022 -0
- package/dist/constructs/v1beta1/team/TeamSchema.d.ts +2022 -0
- package/dist/constructs/v1beta1/team/TeamSchema.js +2 -0
- package/dist/constructs/v1beta1/team/TeamSchema.mjs +2 -0
- package/dist/mesheryApi.d.mts +2033 -108
- package/dist/mesheryApi.d.ts +2033 -108
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +4 -4
|
@@ -223,8 +223,435 @@ declare const OrganizationSchema: {
|
|
|
223
223
|
};
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
|
+
readonly "/api/identity/orgs/{orgID}/teams/{teamId}": {
|
|
227
|
+
readonly post: {
|
|
228
|
+
readonly summary: "Add team to organization or soft delete team";
|
|
229
|
+
readonly description: "Adds a team to an organization. If request body contains action=delete, tombstones a team by setting its deleted_at timestamp. The team's organization mapping remains intact.";
|
|
230
|
+
readonly operationId: "AddTeamToOrg";
|
|
231
|
+
readonly parameters: readonly [{
|
|
232
|
+
readonly name: "orgID";
|
|
233
|
+
readonly in: "path";
|
|
234
|
+
readonly required: true;
|
|
235
|
+
readonly schema: {
|
|
236
|
+
readonly type: "string";
|
|
237
|
+
readonly format: "uuid";
|
|
238
|
+
readonly "x-go-type": "uuid.UUID";
|
|
239
|
+
readonly "x-go-type-import": {
|
|
240
|
+
readonly path: "github.com/gofrs/uuid";
|
|
241
|
+
};
|
|
242
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
243
|
+
readonly db: "org_id";
|
|
244
|
+
readonly json: "org_id";
|
|
245
|
+
};
|
|
246
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
247
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
248
|
+
};
|
|
249
|
+
}, {
|
|
250
|
+
readonly name: "teamId";
|
|
251
|
+
readonly in: "path";
|
|
252
|
+
readonly required: true;
|
|
253
|
+
readonly schema: {
|
|
254
|
+
readonly type: "string";
|
|
255
|
+
readonly format: "uuid";
|
|
256
|
+
readonly "x-go-type": "uuid.UUID";
|
|
257
|
+
readonly "x-go-type-import": {
|
|
258
|
+
readonly path: "github.com/gofrs/uuid";
|
|
259
|
+
};
|
|
260
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
261
|
+
readonly db: "team_id";
|
|
262
|
+
readonly json: "team_id";
|
|
263
|
+
};
|
|
264
|
+
readonly "x-go-type-name": "TeamId";
|
|
265
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
266
|
+
};
|
|
267
|
+
}];
|
|
268
|
+
readonly requestBody: {
|
|
269
|
+
readonly required: false;
|
|
270
|
+
readonly content: {
|
|
271
|
+
readonly "application/json": {
|
|
272
|
+
readonly schema: {
|
|
273
|
+
readonly type: "object";
|
|
274
|
+
readonly description: "Optional action payload for POST on /api/identity/orgs/{orgID}/teams/{teamId}.";
|
|
275
|
+
readonly properties: {
|
|
276
|
+
readonly action: {
|
|
277
|
+
readonly type: "string";
|
|
278
|
+
readonly description: "Internal action to perform on the team resource.";
|
|
279
|
+
readonly enum: readonly ["delete"];
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
readonly responses: {
|
|
287
|
+
readonly "200": {
|
|
288
|
+
readonly description: "Team added to organization or team tombstoned";
|
|
289
|
+
readonly content: {
|
|
290
|
+
readonly "application/json": {
|
|
291
|
+
readonly schema: {
|
|
292
|
+
readonly oneOf: readonly [{
|
|
293
|
+
readonly type: "object";
|
|
294
|
+
readonly properties: {
|
|
295
|
+
readonly page: {
|
|
296
|
+
readonly type: "integer";
|
|
297
|
+
};
|
|
298
|
+
readonly page_size: {
|
|
299
|
+
readonly type: "integer";
|
|
300
|
+
};
|
|
301
|
+
readonly total_count: {
|
|
302
|
+
readonly type: "integer";
|
|
303
|
+
};
|
|
304
|
+
readonly teams_organizations_mapping: {
|
|
305
|
+
readonly type: "array";
|
|
306
|
+
readonly items: {
|
|
307
|
+
readonly type: "object";
|
|
308
|
+
readonly properties: {
|
|
309
|
+
readonly ID: {
|
|
310
|
+
readonly type: "string";
|
|
311
|
+
readonly format: "uuid";
|
|
312
|
+
readonly "x-go-type": "uuid.UUID";
|
|
313
|
+
readonly "x-go-type-import": {
|
|
314
|
+
readonly path: "github.com/gofrs/uuid";
|
|
315
|
+
};
|
|
316
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
317
|
+
readonly db: "id";
|
|
318
|
+
readonly json: "id";
|
|
319
|
+
};
|
|
320
|
+
readonly "x-go-type-name": "GeneralId";
|
|
321
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
322
|
+
};
|
|
323
|
+
readonly org_id: {
|
|
324
|
+
readonly type: "string";
|
|
325
|
+
readonly format: "uuid";
|
|
326
|
+
readonly "x-go-type": "uuid.UUID";
|
|
327
|
+
readonly "x-go-type-import": {
|
|
328
|
+
readonly path: "github.com/gofrs/uuid";
|
|
329
|
+
};
|
|
330
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
331
|
+
readonly db: "org_id";
|
|
332
|
+
readonly json: "org_id";
|
|
333
|
+
};
|
|
334
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
335
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
336
|
+
};
|
|
337
|
+
readonly team_id: {
|
|
338
|
+
readonly type: "string";
|
|
339
|
+
readonly format: "uuid";
|
|
340
|
+
readonly "x-go-type": "uuid.UUID";
|
|
341
|
+
readonly "x-go-type-import": {
|
|
342
|
+
readonly path: "github.com/gofrs/uuid";
|
|
343
|
+
};
|
|
344
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
345
|
+
readonly db: "team_id";
|
|
346
|
+
readonly json: "team_id";
|
|
347
|
+
};
|
|
348
|
+
readonly "x-go-type-name": "TeamId";
|
|
349
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
350
|
+
};
|
|
351
|
+
readonly created_at: {
|
|
352
|
+
readonly type: "string";
|
|
353
|
+
readonly format: "date-time";
|
|
354
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
355
|
+
};
|
|
356
|
+
readonly updated_at: {
|
|
357
|
+
readonly type: "string";
|
|
358
|
+
readonly format: "date-time";
|
|
359
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
360
|
+
};
|
|
361
|
+
readonly deleted_at: {
|
|
362
|
+
readonly type: "string";
|
|
363
|
+
readonly format: "date-time";
|
|
364
|
+
readonly "x-go-type": "sql.NullTime";
|
|
365
|
+
readonly "x-go-type-import": {
|
|
366
|
+
readonly path: "database/sql";
|
|
367
|
+
};
|
|
368
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
369
|
+
};
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
}, {
|
|
375
|
+
readonly type: "object";
|
|
376
|
+
readonly properties: {
|
|
377
|
+
readonly page: {
|
|
378
|
+
readonly type: "integer";
|
|
379
|
+
};
|
|
380
|
+
readonly page_size: {
|
|
381
|
+
readonly type: "integer";
|
|
382
|
+
};
|
|
383
|
+
readonly total_count: {
|
|
384
|
+
readonly type: "integer";
|
|
385
|
+
};
|
|
386
|
+
readonly teams: {
|
|
387
|
+
readonly type: "array";
|
|
388
|
+
readonly items: {
|
|
389
|
+
readonly type: "object";
|
|
390
|
+
readonly properties: {
|
|
391
|
+
readonly ID: {
|
|
392
|
+
readonly type: "string";
|
|
393
|
+
readonly format: "uuid";
|
|
394
|
+
readonly "x-go-type": "uuid.UUID";
|
|
395
|
+
readonly "x-go-type-import": {
|
|
396
|
+
readonly path: "github.com/gofrs/uuid";
|
|
397
|
+
};
|
|
398
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
399
|
+
readonly db: "id";
|
|
400
|
+
readonly json: "id";
|
|
401
|
+
};
|
|
402
|
+
readonly "x-go-type-name": "GeneralId";
|
|
403
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
404
|
+
};
|
|
405
|
+
readonly name: {
|
|
406
|
+
readonly type: "string";
|
|
407
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
408
|
+
};
|
|
409
|
+
readonly description: {
|
|
410
|
+
readonly type: "string";
|
|
411
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
412
|
+
};
|
|
413
|
+
readonly owner: {
|
|
414
|
+
readonly type: "string";
|
|
415
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
416
|
+
};
|
|
417
|
+
readonly metadata: {
|
|
418
|
+
readonly type: "object";
|
|
419
|
+
readonly additionalProperties: {
|
|
420
|
+
readonly type: "string";
|
|
421
|
+
};
|
|
422
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
423
|
+
};
|
|
424
|
+
readonly created_at: {
|
|
425
|
+
readonly type: "string";
|
|
426
|
+
readonly format: "date-time";
|
|
427
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
428
|
+
};
|
|
429
|
+
readonly updated_at: {
|
|
430
|
+
readonly type: "string";
|
|
431
|
+
readonly format: "date-time";
|
|
432
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
433
|
+
};
|
|
434
|
+
readonly deleted_at: {
|
|
435
|
+
readonly type: "string";
|
|
436
|
+
readonly format: "date-time";
|
|
437
|
+
readonly "x-go-type": "sql.NullTime";
|
|
438
|
+
readonly "x-go-type-import": {
|
|
439
|
+
readonly path: "database/sql";
|
|
440
|
+
};
|
|
441
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
}];
|
|
448
|
+
};
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
};
|
|
452
|
+
readonly "400": {
|
|
453
|
+
readonly description: "Bad request";
|
|
454
|
+
};
|
|
455
|
+
readonly "401": {
|
|
456
|
+
readonly description: "Unauthorized";
|
|
457
|
+
};
|
|
458
|
+
readonly "404": {
|
|
459
|
+
readonly description: "Not found";
|
|
460
|
+
};
|
|
461
|
+
readonly "500": {
|
|
462
|
+
readonly description: "Internal server error";
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
readonly delete: {
|
|
467
|
+
readonly summary: "Remove team from organization";
|
|
468
|
+
readonly description: "Removes (unassigns) a team from an organization.";
|
|
469
|
+
readonly operationId: "RemoveTeamFromOrg";
|
|
470
|
+
readonly parameters: readonly [{
|
|
471
|
+
readonly name: "orgID";
|
|
472
|
+
readonly in: "path";
|
|
473
|
+
readonly required: true;
|
|
474
|
+
readonly schema: {
|
|
475
|
+
readonly type: "string";
|
|
476
|
+
readonly format: "uuid";
|
|
477
|
+
readonly "x-go-type": "uuid.UUID";
|
|
478
|
+
readonly "x-go-type-import": {
|
|
479
|
+
readonly path: "github.com/gofrs/uuid";
|
|
480
|
+
};
|
|
481
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
482
|
+
readonly db: "org_id";
|
|
483
|
+
readonly json: "org_id";
|
|
484
|
+
};
|
|
485
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
486
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
487
|
+
};
|
|
488
|
+
}, {
|
|
489
|
+
readonly name: "teamId";
|
|
490
|
+
readonly in: "path";
|
|
491
|
+
readonly required: true;
|
|
492
|
+
readonly schema: {
|
|
493
|
+
readonly type: "string";
|
|
494
|
+
readonly format: "uuid";
|
|
495
|
+
readonly "x-go-type": "uuid.UUID";
|
|
496
|
+
readonly "x-go-type-import": {
|
|
497
|
+
readonly path: "github.com/gofrs/uuid";
|
|
498
|
+
};
|
|
499
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
500
|
+
readonly db: "team_id";
|
|
501
|
+
readonly json: "team_id";
|
|
502
|
+
};
|
|
503
|
+
readonly "x-go-type-name": "TeamId";
|
|
504
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
505
|
+
};
|
|
506
|
+
}];
|
|
507
|
+
readonly responses: {
|
|
508
|
+
readonly "200": {
|
|
509
|
+
readonly description: "Team removed from organization";
|
|
510
|
+
readonly content: {
|
|
511
|
+
readonly "application/json": {
|
|
512
|
+
readonly schema: {
|
|
513
|
+
readonly type: "object";
|
|
514
|
+
readonly properties: {
|
|
515
|
+
readonly page: {
|
|
516
|
+
readonly type: "integer";
|
|
517
|
+
};
|
|
518
|
+
readonly page_size: {
|
|
519
|
+
readonly type: "integer";
|
|
520
|
+
};
|
|
521
|
+
readonly total_count: {
|
|
522
|
+
readonly type: "integer";
|
|
523
|
+
};
|
|
524
|
+
readonly teams_organizations_mapping: {
|
|
525
|
+
readonly type: "array";
|
|
526
|
+
readonly items: {
|
|
527
|
+
readonly type: "object";
|
|
528
|
+
readonly properties: {
|
|
529
|
+
readonly ID: {
|
|
530
|
+
readonly type: "string";
|
|
531
|
+
readonly format: "uuid";
|
|
532
|
+
readonly "x-go-type": "uuid.UUID";
|
|
533
|
+
readonly "x-go-type-import": {
|
|
534
|
+
readonly path: "github.com/gofrs/uuid";
|
|
535
|
+
};
|
|
536
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
537
|
+
readonly db: "id";
|
|
538
|
+
readonly json: "id";
|
|
539
|
+
};
|
|
540
|
+
readonly "x-go-type-name": "GeneralId";
|
|
541
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
542
|
+
};
|
|
543
|
+
readonly org_id: {
|
|
544
|
+
readonly type: "string";
|
|
545
|
+
readonly format: "uuid";
|
|
546
|
+
readonly "x-go-type": "uuid.UUID";
|
|
547
|
+
readonly "x-go-type-import": {
|
|
548
|
+
readonly path: "github.com/gofrs/uuid";
|
|
549
|
+
};
|
|
550
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
551
|
+
readonly db: "org_id";
|
|
552
|
+
readonly json: "org_id";
|
|
553
|
+
};
|
|
554
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
555
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
556
|
+
};
|
|
557
|
+
readonly team_id: {
|
|
558
|
+
readonly type: "string";
|
|
559
|
+
readonly format: "uuid";
|
|
560
|
+
readonly "x-go-type": "uuid.UUID";
|
|
561
|
+
readonly "x-go-type-import": {
|
|
562
|
+
readonly path: "github.com/gofrs/uuid";
|
|
563
|
+
};
|
|
564
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
565
|
+
readonly db: "team_id";
|
|
566
|
+
readonly json: "team_id";
|
|
567
|
+
};
|
|
568
|
+
readonly "x-go-type-name": "TeamId";
|
|
569
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
570
|
+
};
|
|
571
|
+
readonly created_at: {
|
|
572
|
+
readonly type: "string";
|
|
573
|
+
readonly format: "date-time";
|
|
574
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
575
|
+
};
|
|
576
|
+
readonly updated_at: {
|
|
577
|
+
readonly type: "string";
|
|
578
|
+
readonly format: "date-time";
|
|
579
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
580
|
+
};
|
|
581
|
+
readonly deleted_at: {
|
|
582
|
+
readonly type: "string";
|
|
583
|
+
readonly format: "date-time";
|
|
584
|
+
readonly "x-go-type": "sql.NullTime";
|
|
585
|
+
readonly "x-go-type-import": {
|
|
586
|
+
readonly path: "database/sql";
|
|
587
|
+
};
|
|
588
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
readonly "400": {
|
|
599
|
+
readonly description: "Bad request";
|
|
600
|
+
};
|
|
601
|
+
readonly "401": {
|
|
602
|
+
readonly description: "Unauthorized";
|
|
603
|
+
};
|
|
604
|
+
readonly "404": {
|
|
605
|
+
readonly description: "Not found";
|
|
606
|
+
};
|
|
607
|
+
readonly "500": {
|
|
608
|
+
readonly description: "Internal server error";
|
|
609
|
+
};
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
};
|
|
226
613
|
};
|
|
227
614
|
readonly components: {
|
|
615
|
+
readonly parameters: {
|
|
616
|
+
readonly orgID: {
|
|
617
|
+
readonly name: "orgID";
|
|
618
|
+
readonly in: "path";
|
|
619
|
+
readonly required: true;
|
|
620
|
+
readonly schema: {
|
|
621
|
+
readonly type: "string";
|
|
622
|
+
readonly format: "uuid";
|
|
623
|
+
readonly "x-go-type": "uuid.UUID";
|
|
624
|
+
readonly "x-go-type-import": {
|
|
625
|
+
readonly path: "github.com/gofrs/uuid";
|
|
626
|
+
};
|
|
627
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
628
|
+
readonly db: "org_id";
|
|
629
|
+
readonly json: "org_id";
|
|
630
|
+
};
|
|
631
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
632
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
readonly teamId: {
|
|
636
|
+
readonly name: "teamId";
|
|
637
|
+
readonly in: "path";
|
|
638
|
+
readonly required: true;
|
|
639
|
+
readonly schema: {
|
|
640
|
+
readonly type: "string";
|
|
641
|
+
readonly format: "uuid";
|
|
642
|
+
readonly "x-go-type": "uuid.UUID";
|
|
643
|
+
readonly "x-go-type-import": {
|
|
644
|
+
readonly path: "github.com/gofrs/uuid";
|
|
645
|
+
};
|
|
646
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
647
|
+
readonly db: "team_id";
|
|
648
|
+
readonly json: "team_id";
|
|
649
|
+
};
|
|
650
|
+
readonly "x-go-type-name": "TeamId";
|
|
651
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
};
|
|
228
655
|
readonly schemas: {
|
|
229
656
|
readonly UUID: {
|
|
230
657
|
readonly type: "string";
|
|
@@ -249,6 +676,28 @@ declare const OrganizationSchema: {
|
|
|
249
676
|
readonly format: "date-time";
|
|
250
677
|
readonly "x-go-type-skip-optional-pointer": true;
|
|
251
678
|
};
|
|
679
|
+
readonly Text: {
|
|
680
|
+
readonly type: "string";
|
|
681
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
682
|
+
};
|
|
683
|
+
readonly MapObject: {
|
|
684
|
+
readonly type: "object";
|
|
685
|
+
readonly additionalProperties: {
|
|
686
|
+
readonly type: "string";
|
|
687
|
+
};
|
|
688
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
689
|
+
};
|
|
690
|
+
readonly OrgTeamActionPayload: {
|
|
691
|
+
readonly type: "object";
|
|
692
|
+
readonly description: "Optional action payload for POST on /api/identity/orgs/{orgID}/teams/{teamId}.";
|
|
693
|
+
readonly properties: {
|
|
694
|
+
readonly action: {
|
|
695
|
+
readonly type: "string";
|
|
696
|
+
readonly description: "Internal action to perform on the team resource.";
|
|
697
|
+
readonly enum: readonly ["delete"];
|
|
698
|
+
};
|
|
699
|
+
};
|
|
700
|
+
};
|
|
252
701
|
readonly Location: {
|
|
253
702
|
readonly type: "object";
|
|
254
703
|
readonly required: readonly ["svg", "location"];
|
|
@@ -758,6 +1207,286 @@ declare const OrganizationSchema: {
|
|
|
758
1207
|
};
|
|
759
1208
|
};
|
|
760
1209
|
};
|
|
1210
|
+
readonly AvailableTeam: {
|
|
1211
|
+
readonly type: "object";
|
|
1212
|
+
readonly properties: {
|
|
1213
|
+
readonly ID: {
|
|
1214
|
+
readonly type: "string";
|
|
1215
|
+
readonly format: "uuid";
|
|
1216
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1217
|
+
readonly "x-go-type-import": {
|
|
1218
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1219
|
+
};
|
|
1220
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1221
|
+
readonly db: "id";
|
|
1222
|
+
readonly json: "id";
|
|
1223
|
+
};
|
|
1224
|
+
readonly "x-go-type-name": "GeneralId";
|
|
1225
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1226
|
+
};
|
|
1227
|
+
readonly name: {
|
|
1228
|
+
readonly type: "string";
|
|
1229
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1230
|
+
};
|
|
1231
|
+
readonly description: {
|
|
1232
|
+
readonly type: "string";
|
|
1233
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1234
|
+
};
|
|
1235
|
+
readonly owner: {
|
|
1236
|
+
readonly type: "string";
|
|
1237
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1238
|
+
};
|
|
1239
|
+
readonly metadata: {
|
|
1240
|
+
readonly type: "object";
|
|
1241
|
+
readonly additionalProperties: {
|
|
1242
|
+
readonly type: "string";
|
|
1243
|
+
};
|
|
1244
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1245
|
+
};
|
|
1246
|
+
readonly created_at: {
|
|
1247
|
+
readonly type: "string";
|
|
1248
|
+
readonly format: "date-time";
|
|
1249
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1250
|
+
};
|
|
1251
|
+
readonly updated_at: {
|
|
1252
|
+
readonly type: "string";
|
|
1253
|
+
readonly format: "date-time";
|
|
1254
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1255
|
+
};
|
|
1256
|
+
readonly deleted_at: {
|
|
1257
|
+
readonly type: "string";
|
|
1258
|
+
readonly format: "date-time";
|
|
1259
|
+
readonly "x-go-type": "sql.NullTime";
|
|
1260
|
+
readonly "x-go-type-import": {
|
|
1261
|
+
readonly path: "database/sql";
|
|
1262
|
+
};
|
|
1263
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1264
|
+
};
|
|
1265
|
+
};
|
|
1266
|
+
};
|
|
1267
|
+
readonly TeamsPage: {
|
|
1268
|
+
readonly type: "object";
|
|
1269
|
+
readonly properties: {
|
|
1270
|
+
readonly page: {
|
|
1271
|
+
readonly type: "integer";
|
|
1272
|
+
};
|
|
1273
|
+
readonly page_size: {
|
|
1274
|
+
readonly type: "integer";
|
|
1275
|
+
};
|
|
1276
|
+
readonly total_count: {
|
|
1277
|
+
readonly type: "integer";
|
|
1278
|
+
};
|
|
1279
|
+
readonly teams: {
|
|
1280
|
+
readonly type: "array";
|
|
1281
|
+
readonly items: {
|
|
1282
|
+
readonly type: "object";
|
|
1283
|
+
readonly properties: {
|
|
1284
|
+
readonly ID: {
|
|
1285
|
+
readonly type: "string";
|
|
1286
|
+
readonly format: "uuid";
|
|
1287
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1288
|
+
readonly "x-go-type-import": {
|
|
1289
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1290
|
+
};
|
|
1291
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1292
|
+
readonly db: "id";
|
|
1293
|
+
readonly json: "id";
|
|
1294
|
+
};
|
|
1295
|
+
readonly "x-go-type-name": "GeneralId";
|
|
1296
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1297
|
+
};
|
|
1298
|
+
readonly name: {
|
|
1299
|
+
readonly type: "string";
|
|
1300
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1301
|
+
};
|
|
1302
|
+
readonly description: {
|
|
1303
|
+
readonly type: "string";
|
|
1304
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1305
|
+
};
|
|
1306
|
+
readonly owner: {
|
|
1307
|
+
readonly type: "string";
|
|
1308
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1309
|
+
};
|
|
1310
|
+
readonly metadata: {
|
|
1311
|
+
readonly type: "object";
|
|
1312
|
+
readonly additionalProperties: {
|
|
1313
|
+
readonly type: "string";
|
|
1314
|
+
};
|
|
1315
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1316
|
+
};
|
|
1317
|
+
readonly created_at: {
|
|
1318
|
+
readonly type: "string";
|
|
1319
|
+
readonly format: "date-time";
|
|
1320
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1321
|
+
};
|
|
1322
|
+
readonly updated_at: {
|
|
1323
|
+
readonly type: "string";
|
|
1324
|
+
readonly format: "date-time";
|
|
1325
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1326
|
+
};
|
|
1327
|
+
readonly deleted_at: {
|
|
1328
|
+
readonly type: "string";
|
|
1329
|
+
readonly format: "date-time";
|
|
1330
|
+
readonly "x-go-type": "sql.NullTime";
|
|
1331
|
+
readonly "x-go-type-import": {
|
|
1332
|
+
readonly path: "database/sql";
|
|
1333
|
+
};
|
|
1334
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1335
|
+
};
|
|
1336
|
+
};
|
|
1337
|
+
};
|
|
1338
|
+
};
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
readonly TeamsOrganizationsMapping: {
|
|
1342
|
+
readonly type: "object";
|
|
1343
|
+
readonly properties: {
|
|
1344
|
+
readonly ID: {
|
|
1345
|
+
readonly type: "string";
|
|
1346
|
+
readonly format: "uuid";
|
|
1347
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1348
|
+
readonly "x-go-type-import": {
|
|
1349
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1350
|
+
};
|
|
1351
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1352
|
+
readonly db: "id";
|
|
1353
|
+
readonly json: "id";
|
|
1354
|
+
};
|
|
1355
|
+
readonly "x-go-type-name": "GeneralId";
|
|
1356
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1357
|
+
};
|
|
1358
|
+
readonly org_id: {
|
|
1359
|
+
readonly type: "string";
|
|
1360
|
+
readonly format: "uuid";
|
|
1361
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1362
|
+
readonly "x-go-type-import": {
|
|
1363
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1364
|
+
};
|
|
1365
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1366
|
+
readonly db: "org_id";
|
|
1367
|
+
readonly json: "org_id";
|
|
1368
|
+
};
|
|
1369
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
1370
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1371
|
+
};
|
|
1372
|
+
readonly team_id: {
|
|
1373
|
+
readonly type: "string";
|
|
1374
|
+
readonly format: "uuid";
|
|
1375
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1376
|
+
readonly "x-go-type-import": {
|
|
1377
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1378
|
+
};
|
|
1379
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1380
|
+
readonly db: "team_id";
|
|
1381
|
+
readonly json: "team_id";
|
|
1382
|
+
};
|
|
1383
|
+
readonly "x-go-type-name": "TeamId";
|
|
1384
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1385
|
+
};
|
|
1386
|
+
readonly created_at: {
|
|
1387
|
+
readonly type: "string";
|
|
1388
|
+
readonly format: "date-time";
|
|
1389
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1390
|
+
};
|
|
1391
|
+
readonly updated_at: {
|
|
1392
|
+
readonly type: "string";
|
|
1393
|
+
readonly format: "date-time";
|
|
1394
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1395
|
+
};
|
|
1396
|
+
readonly deleted_at: {
|
|
1397
|
+
readonly type: "string";
|
|
1398
|
+
readonly format: "date-time";
|
|
1399
|
+
readonly "x-go-type": "sql.NullTime";
|
|
1400
|
+
readonly "x-go-type-import": {
|
|
1401
|
+
readonly path: "database/sql";
|
|
1402
|
+
};
|
|
1403
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
};
|
|
1407
|
+
readonly TeamsOrganizationsMappingPage: {
|
|
1408
|
+
readonly type: "object";
|
|
1409
|
+
readonly properties: {
|
|
1410
|
+
readonly page: {
|
|
1411
|
+
readonly type: "integer";
|
|
1412
|
+
};
|
|
1413
|
+
readonly page_size: {
|
|
1414
|
+
readonly type: "integer";
|
|
1415
|
+
};
|
|
1416
|
+
readonly total_count: {
|
|
1417
|
+
readonly type: "integer";
|
|
1418
|
+
};
|
|
1419
|
+
readonly teams_organizations_mapping: {
|
|
1420
|
+
readonly type: "array";
|
|
1421
|
+
readonly items: {
|
|
1422
|
+
readonly type: "object";
|
|
1423
|
+
readonly properties: {
|
|
1424
|
+
readonly ID: {
|
|
1425
|
+
readonly type: "string";
|
|
1426
|
+
readonly format: "uuid";
|
|
1427
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1428
|
+
readonly "x-go-type-import": {
|
|
1429
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1430
|
+
};
|
|
1431
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1432
|
+
readonly db: "id";
|
|
1433
|
+
readonly json: "id";
|
|
1434
|
+
};
|
|
1435
|
+
readonly "x-go-type-name": "GeneralId";
|
|
1436
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1437
|
+
};
|
|
1438
|
+
readonly org_id: {
|
|
1439
|
+
readonly type: "string";
|
|
1440
|
+
readonly format: "uuid";
|
|
1441
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1442
|
+
readonly "x-go-type-import": {
|
|
1443
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1444
|
+
};
|
|
1445
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1446
|
+
readonly db: "org_id";
|
|
1447
|
+
readonly json: "org_id";
|
|
1448
|
+
};
|
|
1449
|
+
readonly "x-go-type-name": "OrganizationId";
|
|
1450
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1451
|
+
};
|
|
1452
|
+
readonly team_id: {
|
|
1453
|
+
readonly type: "string";
|
|
1454
|
+
readonly format: "uuid";
|
|
1455
|
+
readonly "x-go-type": "uuid.UUID";
|
|
1456
|
+
readonly "x-go-type-import": {
|
|
1457
|
+
readonly path: "github.com/gofrs/uuid";
|
|
1458
|
+
};
|
|
1459
|
+
readonly "x-oapi-codegen-extra-tags": {
|
|
1460
|
+
readonly db: "team_id";
|
|
1461
|
+
readonly json: "team_id";
|
|
1462
|
+
};
|
|
1463
|
+
readonly "x-go-type-name": "TeamId";
|
|
1464
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1465
|
+
};
|
|
1466
|
+
readonly created_at: {
|
|
1467
|
+
readonly type: "string";
|
|
1468
|
+
readonly format: "date-time";
|
|
1469
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1470
|
+
};
|
|
1471
|
+
readonly updated_at: {
|
|
1472
|
+
readonly type: "string";
|
|
1473
|
+
readonly format: "date-time";
|
|
1474
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1475
|
+
};
|
|
1476
|
+
readonly deleted_at: {
|
|
1477
|
+
readonly type: "string";
|
|
1478
|
+
readonly format: "date-time";
|
|
1479
|
+
readonly "x-go-type": "sql.NullTime";
|
|
1480
|
+
readonly "x-go-type-import": {
|
|
1481
|
+
readonly path: "database/sql";
|
|
1482
|
+
};
|
|
1483
|
+
readonly "x-go-type-skip-optional-pointer": true;
|
|
1484
|
+
};
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
};
|
|
1488
|
+
};
|
|
1489
|
+
};
|
|
761
1490
|
};
|
|
762
1491
|
};
|
|
763
1492
|
};
|