@seamapi/types 1.4.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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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'