@seamapi/types 1.3.0 → 1.4.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.
|
@@ -482,6 +482,18 @@ export interface Routes {
|
|
|
482
482
|
}>;
|
|
483
483
|
};
|
|
484
484
|
};
|
|
485
|
+
'/acs/users/add_to_access_group': {
|
|
486
|
+
route: '/acs/users/add_to_access_group';
|
|
487
|
+
method: 'POST' | 'PATCH';
|
|
488
|
+
queryParams: {};
|
|
489
|
+
jsonBody: {};
|
|
490
|
+
commonParams: {
|
|
491
|
+
acs_user_id: string;
|
|
492
|
+
acs_access_group_id: string;
|
|
493
|
+
};
|
|
494
|
+
formData: {};
|
|
495
|
+
jsonResponse: {};
|
|
496
|
+
};
|
|
485
497
|
'/acs/users/create': {
|
|
486
498
|
route: '/acs/users/create';
|
|
487
499
|
method: 'POST';
|
|
@@ -504,6 +516,18 @@ export interface Routes {
|
|
|
504
516
|
};
|
|
505
517
|
};
|
|
506
518
|
};
|
|
519
|
+
'/acs/users/remove_from_access_group': {
|
|
520
|
+
route: '/acs/users/remove_from_access_group';
|
|
521
|
+
method: 'POST' | 'PATCH';
|
|
522
|
+
queryParams: {};
|
|
523
|
+
jsonBody: {};
|
|
524
|
+
commonParams: {
|
|
525
|
+
acs_user_id: string;
|
|
526
|
+
acs_access_group_id: string;
|
|
527
|
+
};
|
|
528
|
+
formData: {};
|
|
529
|
+
jsonResponse: {};
|
|
530
|
+
};
|
|
507
531
|
'/acs/users/update': {
|
|
508
532
|
route: '/acs/users/update';
|
|
509
533
|
method: 'POST' | 'PATCH';
|
package/package.json
CHANGED
|
@@ -496,6 +496,18 @@ export interface Routes {
|
|
|
496
496
|
}>
|
|
497
497
|
}
|
|
498
498
|
}
|
|
499
|
+
'/acs/users/add_to_access_group': {
|
|
500
|
+
route: '/acs/users/add_to_access_group'
|
|
501
|
+
method: 'POST' | 'PATCH'
|
|
502
|
+
queryParams: {}
|
|
503
|
+
jsonBody: {}
|
|
504
|
+
commonParams: {
|
|
505
|
+
acs_user_id: string
|
|
506
|
+
acs_access_group_id: string
|
|
507
|
+
}
|
|
508
|
+
formData: {}
|
|
509
|
+
jsonResponse: {}
|
|
510
|
+
}
|
|
499
511
|
'/acs/users/create': {
|
|
500
512
|
route: '/acs/users/create'
|
|
501
513
|
method: 'POST'
|
|
@@ -518,6 +530,18 @@ export interface Routes {
|
|
|
518
530
|
}
|
|
519
531
|
}
|
|
520
532
|
}
|
|
533
|
+
'/acs/users/remove_from_access_group': {
|
|
534
|
+
route: '/acs/users/remove_from_access_group'
|
|
535
|
+
method: 'POST' | 'PATCH'
|
|
536
|
+
queryParams: {}
|
|
537
|
+
jsonBody: {}
|
|
538
|
+
commonParams: {
|
|
539
|
+
acs_user_id: string
|
|
540
|
+
acs_access_group_id: string
|
|
541
|
+
}
|
|
542
|
+
formData: {}
|
|
543
|
+
jsonResponse: {}
|
|
544
|
+
}
|
|
521
545
|
'/acs/users/update': {
|
|
522
546
|
route: '/acs/users/update'
|
|
523
547
|
method: 'POST' | 'PATCH'
|