@seamapi/types 1.3.0 → 1.5.0
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.
|
@@ -448,6 +448,39 @@ export interface Routes {
|
|
|
448
448
|
};
|
|
449
449
|
};
|
|
450
450
|
};
|
|
451
|
+
'/acs/access_groups/create': {
|
|
452
|
+
route: '/acs/access_groups/create';
|
|
453
|
+
method: 'POST';
|
|
454
|
+
queryParams: {};
|
|
455
|
+
jsonBody: {};
|
|
456
|
+
commonParams: {
|
|
457
|
+
acs_system_id: string;
|
|
458
|
+
name?: string | undefined;
|
|
459
|
+
};
|
|
460
|
+
formData: {};
|
|
461
|
+
jsonResponse: {
|
|
462
|
+
acs_access_group: {
|
|
463
|
+
acs_access_group_id: string;
|
|
464
|
+
acs_system_id: string;
|
|
465
|
+
workspace_id: string;
|
|
466
|
+
name: string;
|
|
467
|
+
acs_access_group_type: 'pti_unit';
|
|
468
|
+
created_at: string | Date;
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
'/acs/access_groups/update': {
|
|
473
|
+
route: '/acs/access_groups/update';
|
|
474
|
+
method: 'POST' | 'PATCH';
|
|
475
|
+
queryParams: {};
|
|
476
|
+
jsonBody: {};
|
|
477
|
+
commonParams: {
|
|
478
|
+
acs_access_group_id: string;
|
|
479
|
+
name?: (string | null) | undefined;
|
|
480
|
+
};
|
|
481
|
+
formData: {};
|
|
482
|
+
jsonResponse: {};
|
|
483
|
+
};
|
|
451
484
|
'/acs/systems/get': {
|
|
452
485
|
route: '/acs/systems/get';
|
|
453
486
|
method: 'GET' | 'POST';
|
|
@@ -482,6 +515,18 @@ export interface Routes {
|
|
|
482
515
|
}>;
|
|
483
516
|
};
|
|
484
517
|
};
|
|
518
|
+
'/acs/users/add_to_access_group': {
|
|
519
|
+
route: '/acs/users/add_to_access_group';
|
|
520
|
+
method: 'POST' | 'PATCH';
|
|
521
|
+
queryParams: {};
|
|
522
|
+
jsonBody: {};
|
|
523
|
+
commonParams: {
|
|
524
|
+
acs_user_id: string;
|
|
525
|
+
acs_access_group_id: string;
|
|
526
|
+
};
|
|
527
|
+
formData: {};
|
|
528
|
+
jsonResponse: {};
|
|
529
|
+
};
|
|
485
530
|
'/acs/users/create': {
|
|
486
531
|
route: '/acs/users/create';
|
|
487
532
|
method: 'POST';
|
|
@@ -504,6 +549,18 @@ export interface Routes {
|
|
|
504
549
|
};
|
|
505
550
|
};
|
|
506
551
|
};
|
|
552
|
+
'/acs/users/remove_from_access_group': {
|
|
553
|
+
route: '/acs/users/remove_from_access_group';
|
|
554
|
+
method: 'POST' | 'PATCH';
|
|
555
|
+
queryParams: {};
|
|
556
|
+
jsonBody: {};
|
|
557
|
+
commonParams: {
|
|
558
|
+
acs_user_id: string;
|
|
559
|
+
acs_access_group_id: string;
|
|
560
|
+
};
|
|
561
|
+
formData: {};
|
|
562
|
+
jsonResponse: {};
|
|
563
|
+
};
|
|
507
564
|
'/acs/users/update': {
|
|
508
565
|
route: '/acs/users/update';
|
|
509
566
|
method: 'POST' | 'PATCH';
|
package/package.json
CHANGED
|
@@ -462,6 +462,39 @@ export interface Routes {
|
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
464
|
}
|
|
465
|
+
'/acs/access_groups/create': {
|
|
466
|
+
route: '/acs/access_groups/create'
|
|
467
|
+
method: 'POST'
|
|
468
|
+
queryParams: {}
|
|
469
|
+
jsonBody: {}
|
|
470
|
+
commonParams: {
|
|
471
|
+
acs_system_id: string
|
|
472
|
+
name?: string | undefined
|
|
473
|
+
}
|
|
474
|
+
formData: {}
|
|
475
|
+
jsonResponse: {
|
|
476
|
+
acs_access_group: {
|
|
477
|
+
acs_access_group_id: string
|
|
478
|
+
acs_system_id: string
|
|
479
|
+
workspace_id: string
|
|
480
|
+
name: string
|
|
481
|
+
acs_access_group_type: 'pti_unit'
|
|
482
|
+
created_at: string | Date
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
'/acs/access_groups/update': {
|
|
487
|
+
route: '/acs/access_groups/update'
|
|
488
|
+
method: 'POST' | 'PATCH'
|
|
489
|
+
queryParams: {}
|
|
490
|
+
jsonBody: {}
|
|
491
|
+
commonParams: {
|
|
492
|
+
acs_access_group_id: string
|
|
493
|
+
name?: (string | null) | undefined
|
|
494
|
+
}
|
|
495
|
+
formData: {}
|
|
496
|
+
jsonResponse: {}
|
|
497
|
+
}
|
|
465
498
|
'/acs/systems/get': {
|
|
466
499
|
route: '/acs/systems/get'
|
|
467
500
|
method: 'GET' | 'POST'
|
|
@@ -496,6 +529,18 @@ export interface Routes {
|
|
|
496
529
|
}>
|
|
497
530
|
}
|
|
498
531
|
}
|
|
532
|
+
'/acs/users/add_to_access_group': {
|
|
533
|
+
route: '/acs/users/add_to_access_group'
|
|
534
|
+
method: 'POST' | 'PATCH'
|
|
535
|
+
queryParams: {}
|
|
536
|
+
jsonBody: {}
|
|
537
|
+
commonParams: {
|
|
538
|
+
acs_user_id: string
|
|
539
|
+
acs_access_group_id: string
|
|
540
|
+
}
|
|
541
|
+
formData: {}
|
|
542
|
+
jsonResponse: {}
|
|
543
|
+
}
|
|
499
544
|
'/acs/users/create': {
|
|
500
545
|
route: '/acs/users/create'
|
|
501
546
|
method: 'POST'
|
|
@@ -518,6 +563,18 @@ export interface Routes {
|
|
|
518
563
|
}
|
|
519
564
|
}
|
|
520
565
|
}
|
|
566
|
+
'/acs/users/remove_from_access_group': {
|
|
567
|
+
route: '/acs/users/remove_from_access_group'
|
|
568
|
+
method: 'POST' | 'PATCH'
|
|
569
|
+
queryParams: {}
|
|
570
|
+
jsonBody: {}
|
|
571
|
+
commonParams: {
|
|
572
|
+
acs_user_id: string
|
|
573
|
+
acs_access_group_id: string
|
|
574
|
+
}
|
|
575
|
+
formData: {}
|
|
576
|
+
jsonResponse: {}
|
|
577
|
+
}
|
|
521
578
|
'/acs/users/update': {
|
|
522
579
|
route: '/acs/users/update'
|
|
523
580
|
method: 'POST' | 'PATCH'
|