@seamapi/types 1.5.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.
@@ -464,11 +464,63 @@ export interface Routes {
464
464
  acs_system_id: string;
465
465
  workspace_id: string;
466
466
  name: string;
467
- acs_access_group_type: 'pti_unit';
467
+ access_group_type: 'pti_unit';
468
468
  created_at: string | Date;
469
469
  };
470
470
  };
471
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
+ };
472
524
  '/acs/access_groups/update': {
473
525
  route: '/acs/access_groups/update';
474
526
  method: 'POST' | 'PATCH';
@@ -887,6 +939,7 @@ export interface Routes {
887
939
  exclusive?: boolean | undefined;
888
940
  } | undefined;
889
941
  account_type?: string | undefined;
942
+ account_type_display_name: string;
890
943
  errors?: any;
891
944
  warnings?: any;
892
945
  custom_metadata?: Record<string, string | number | boolean | null> | undefined;
@@ -912,6 +965,7 @@ export interface Routes {
912
965
  exclusive?: boolean | undefined;
913
966
  } | undefined;
914
967
  account_type?: string | undefined;
968
+ account_type_display_name: string;
915
969
  errors?: any;
916
970
  warnings?: any;
917
971
  custom_metadata?: Record<string, string | number | boolean | null> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -478,11 +478,63 @@ export interface Routes {
478
478
  acs_system_id: string
479
479
  workspace_id: string
480
480
  name: string
481
- acs_access_group_type: 'pti_unit'
481
+ access_group_type: 'pti_unit'
482
482
  created_at: string | Date
483
483
  }
484
484
  }
485
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
+ }
486
538
  '/acs/access_groups/update': {
487
539
  route: '/acs/access_groups/update'
488
540
  method: 'POST' | 'PATCH'
@@ -948,6 +1000,7 @@ export interface Routes {
948
1000
  }
949
1001
  | undefined
950
1002
  account_type?: string | undefined
1003
+ account_type_display_name: string
951
1004
  errors?: any
952
1005
  warnings?: any
953
1006
  custom_metadata?:
@@ -977,6 +1030,7 @@ export interface Routes {
977
1030
  }
978
1031
  | undefined
979
1032
  account_type?: string | undefined
1033
+ account_type_display_name: string
980
1034
  errors?: any
981
1035
  warnings?: any
982
1036
  custom_metadata?: