@seamapi/types 1.4.0 → 1.6.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,91 @@ 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
|
+
access_group_type: 'pti_unit';
|
|
468
|
+
created_at: string | Date;
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
'/acs/access_groups/delete': {
|
|
473
|
+
route: '/acs/access_groups/delete';
|
|
474
|
+
method: 'DELETE' | 'POST';
|
|
475
|
+
queryParams: {};
|
|
476
|
+
jsonBody: {};
|
|
477
|
+
commonParams: {
|
|
478
|
+
acs_access_group_id: string;
|
|
479
|
+
};
|
|
480
|
+
formData: {};
|
|
481
|
+
jsonResponse: {};
|
|
482
|
+
};
|
|
483
|
+
'/acs/access_groups/get': {
|
|
484
|
+
route: '/acs/access_groups/get';
|
|
485
|
+
method: 'GET' | 'POST';
|
|
486
|
+
queryParams: {};
|
|
487
|
+
jsonBody: {};
|
|
488
|
+
commonParams: {
|
|
489
|
+
acs_access_group_id: string;
|
|
490
|
+
};
|
|
491
|
+
formData: {};
|
|
492
|
+
jsonResponse: {
|
|
493
|
+
acs_access_group: {
|
|
494
|
+
acs_access_group_id: string;
|
|
495
|
+
acs_system_id: string;
|
|
496
|
+
workspace_id: string;
|
|
497
|
+
name: string;
|
|
498
|
+
access_group_type: 'pti_unit';
|
|
499
|
+
created_at: string | Date;
|
|
500
|
+
};
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
'/acs/access_groups/list': {
|
|
504
|
+
route: '/acs/access_groups/list';
|
|
505
|
+
method: 'GET' | 'POST';
|
|
506
|
+
queryParams: {};
|
|
507
|
+
jsonBody: {};
|
|
508
|
+
commonParams: {
|
|
509
|
+
acs_access_system_id?: string | undefined;
|
|
510
|
+
acs_user_id?: string | undefined;
|
|
511
|
+
};
|
|
512
|
+
formData: {};
|
|
513
|
+
jsonResponse: {
|
|
514
|
+
acs_access_groups: Array<{
|
|
515
|
+
acs_access_group_id: string;
|
|
516
|
+
acs_system_id: string;
|
|
517
|
+
workspace_id: string;
|
|
518
|
+
name: string;
|
|
519
|
+
access_group_type: 'pti_unit';
|
|
520
|
+
created_at: string | Date;
|
|
521
|
+
}>;
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
'/acs/access_groups/update': {
|
|
525
|
+
route: '/acs/access_groups/update';
|
|
526
|
+
method: 'POST' | 'PATCH';
|
|
527
|
+
queryParams: {};
|
|
528
|
+
jsonBody: {};
|
|
529
|
+
commonParams: {
|
|
530
|
+
acs_access_group_id: string;
|
|
531
|
+
name?: (string | null) | undefined;
|
|
532
|
+
};
|
|
533
|
+
formData: {};
|
|
534
|
+
jsonResponse: {};
|
|
535
|
+
};
|
|
451
536
|
'/acs/systems/get': {
|
|
452
537
|
route: '/acs/systems/get';
|
|
453
538
|
method: 'GET' | 'POST';
|
|
@@ -854,6 +939,7 @@ export interface Routes {
|
|
|
854
939
|
exclusive?: boolean | undefined;
|
|
855
940
|
} | undefined;
|
|
856
941
|
account_type?: string | undefined;
|
|
942
|
+
account_type_display_name: string;
|
|
857
943
|
errors?: any;
|
|
858
944
|
warnings?: any;
|
|
859
945
|
custom_metadata?: Record<string, string | number | boolean | null> | undefined;
|
|
@@ -879,6 +965,7 @@ export interface Routes {
|
|
|
879
965
|
exclusive?: boolean | undefined;
|
|
880
966
|
} | undefined;
|
|
881
967
|
account_type?: string | undefined;
|
|
968
|
+
account_type_display_name: string;
|
|
882
969
|
errors?: any;
|
|
883
970
|
warnings?: any;
|
|
884
971
|
custom_metadata?: Record<string, string | number | boolean | null> | undefined;
|
package/package.json
CHANGED
|
@@ -462,6 +462,91 @@ 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
|
+
access_group_type: 'pti_unit'
|
|
482
|
+
created_at: string | Date
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
'/acs/access_groups/delete': {
|
|
487
|
+
route: '/acs/access_groups/delete'
|
|
488
|
+
method: 'DELETE' | 'POST'
|
|
489
|
+
queryParams: {}
|
|
490
|
+
jsonBody: {}
|
|
491
|
+
commonParams: {
|
|
492
|
+
acs_access_group_id: string
|
|
493
|
+
}
|
|
494
|
+
formData: {}
|
|
495
|
+
jsonResponse: {}
|
|
496
|
+
}
|
|
497
|
+
'/acs/access_groups/get': {
|
|
498
|
+
route: '/acs/access_groups/get'
|
|
499
|
+
method: 'GET' | 'POST'
|
|
500
|
+
queryParams: {}
|
|
501
|
+
jsonBody: {}
|
|
502
|
+
commonParams: {
|
|
503
|
+
acs_access_group_id: string
|
|
504
|
+
}
|
|
505
|
+
formData: {}
|
|
506
|
+
jsonResponse: {
|
|
507
|
+
acs_access_group: {
|
|
508
|
+
acs_access_group_id: string
|
|
509
|
+
acs_system_id: string
|
|
510
|
+
workspace_id: string
|
|
511
|
+
name: string
|
|
512
|
+
access_group_type: 'pti_unit'
|
|
513
|
+
created_at: string | Date
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
'/acs/access_groups/list': {
|
|
518
|
+
route: '/acs/access_groups/list'
|
|
519
|
+
method: 'GET' | 'POST'
|
|
520
|
+
queryParams: {}
|
|
521
|
+
jsonBody: {}
|
|
522
|
+
commonParams: {
|
|
523
|
+
acs_access_system_id?: string | undefined
|
|
524
|
+
acs_user_id?: string | undefined
|
|
525
|
+
}
|
|
526
|
+
formData: {}
|
|
527
|
+
jsonResponse: {
|
|
528
|
+
acs_access_groups: Array<{
|
|
529
|
+
acs_access_group_id: string
|
|
530
|
+
acs_system_id: string
|
|
531
|
+
workspace_id: string
|
|
532
|
+
name: string
|
|
533
|
+
access_group_type: 'pti_unit'
|
|
534
|
+
created_at: string | Date
|
|
535
|
+
}>
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
'/acs/access_groups/update': {
|
|
539
|
+
route: '/acs/access_groups/update'
|
|
540
|
+
method: 'POST' | 'PATCH'
|
|
541
|
+
queryParams: {}
|
|
542
|
+
jsonBody: {}
|
|
543
|
+
commonParams: {
|
|
544
|
+
acs_access_group_id: string
|
|
545
|
+
name?: (string | null) | undefined
|
|
546
|
+
}
|
|
547
|
+
formData: {}
|
|
548
|
+
jsonResponse: {}
|
|
549
|
+
}
|
|
465
550
|
'/acs/systems/get': {
|
|
466
551
|
route: '/acs/systems/get'
|
|
467
552
|
method: 'GET' | 'POST'
|
|
@@ -915,6 +1000,7 @@ export interface Routes {
|
|
|
915
1000
|
}
|
|
916
1001
|
| undefined
|
|
917
1002
|
account_type?: string | undefined
|
|
1003
|
+
account_type_display_name: string
|
|
918
1004
|
errors?: any
|
|
919
1005
|
warnings?: any
|
|
920
1006
|
custom_metadata?:
|
|
@@ -944,6 +1030,7 @@ export interface Routes {
|
|
|
944
1030
|
}
|
|
945
1031
|
| undefined
|
|
946
1032
|
account_type?: string | undefined
|
|
1033
|
+
account_type_display_name: string
|
|
947
1034
|
errors?: any
|
|
948
1035
|
warnings?: any
|
|
949
1036
|
custom_metadata?:
|