@seamapi/types 1.257.0 → 1.258.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.
@@ -8025,6 +8025,128 @@ declare const _default: {
8025
8025
  'x-undocumented': string;
8026
8026
  };
8027
8027
  };
8028
+ '/acs/encoders/list': {
8029
+ post: {
8030
+ operationId: string;
8031
+ requestBody: {
8032
+ content: {
8033
+ 'application/json': {
8034
+ schema: {
8035
+ oneOf: ({
8036
+ properties: {
8037
+ acs_system_ids: {
8038
+ items: {
8039
+ format: string;
8040
+ type: string;
8041
+ };
8042
+ type: string;
8043
+ };
8044
+ device_ids: {
8045
+ items: {
8046
+ format: string;
8047
+ type: string;
8048
+ };
8049
+ type: string;
8050
+ };
8051
+ limit: {
8052
+ default: number;
8053
+ format: string;
8054
+ type: string;
8055
+ };
8056
+ };
8057
+ required: string[];
8058
+ type: string;
8059
+ } | {
8060
+ properties: {
8061
+ device_ids: {
8062
+ items: {
8063
+ format: string;
8064
+ type: string;
8065
+ };
8066
+ type: string;
8067
+ };
8068
+ limit: {
8069
+ default: number;
8070
+ format: string;
8071
+ type: string;
8072
+ };
8073
+ acs_system_ids?: never;
8074
+ };
8075
+ required: string[];
8076
+ type: string;
8077
+ } | {
8078
+ properties: {
8079
+ acs_system_ids: {
8080
+ items: {
8081
+ format: string;
8082
+ type: string;
8083
+ };
8084
+ type: string;
8085
+ };
8086
+ limit: {
8087
+ default: number;
8088
+ format: string;
8089
+ type: string;
8090
+ };
8091
+ device_ids?: never;
8092
+ };
8093
+ required: string[];
8094
+ type: string;
8095
+ })[];
8096
+ };
8097
+ };
8098
+ };
8099
+ };
8100
+ responses: {
8101
+ 200: {
8102
+ content: {
8103
+ 'application/json': {
8104
+ schema: {
8105
+ properties: {
8106
+ devices: {
8107
+ items: {
8108
+ $ref: string;
8109
+ };
8110
+ type: string;
8111
+ };
8112
+ ok: {
8113
+ type: string;
8114
+ };
8115
+ };
8116
+ required: string[];
8117
+ type: string;
8118
+ };
8119
+ };
8120
+ };
8121
+ description: string;
8122
+ };
8123
+ 400: {
8124
+ description: string;
8125
+ };
8126
+ 401: {
8127
+ description: string;
8128
+ };
8129
+ };
8130
+ security: ({
8131
+ pat_with_workspace: never[];
8132
+ console_session?: never;
8133
+ api_key?: never;
8134
+ } | {
8135
+ console_session: never[];
8136
+ pat_with_workspace?: never;
8137
+ api_key?: never;
8138
+ } | {
8139
+ api_key: never[];
8140
+ pat_with_workspace?: never;
8141
+ console_session?: never;
8142
+ })[];
8143
+ summary: string;
8144
+ tags: string[];
8145
+ 'x-fern-sdk-group-name': string[];
8146
+ 'x-fern-sdk-method-name': string;
8147
+ 'x-fern-sdk-return-value': string;
8148
+ };
8149
+ };
8028
8150
  '/acs/encoders/read_card': {
8029
8151
  post: {
8030
8152
  operationId: string;
@@ -7400,6 +7400,90 @@ export default {
7400
7400
  'x-undocumented': 'Encoding a card is currently unimplemented.',
7401
7401
  },
7402
7402
  },
7403
+ '/acs/encoders/list': {
7404
+ post: {
7405
+ operationId: 'acsEncodersListPost',
7406
+ requestBody: {
7407
+ content: {
7408
+ 'application/json': {
7409
+ schema: {
7410
+ oneOf: [
7411
+ {
7412
+ properties: {
7413
+ acs_system_ids: {
7414
+ items: { format: 'uuid', type: 'string' },
7415
+ type: 'array',
7416
+ },
7417
+ device_ids: {
7418
+ items: { format: 'uuid', type: 'string' },
7419
+ type: 'array',
7420
+ },
7421
+ limit: { default: 500, format: 'float', type: 'number' },
7422
+ },
7423
+ required: ['acs_system_ids', 'device_ids'],
7424
+ type: 'object',
7425
+ },
7426
+ {
7427
+ properties: {
7428
+ device_ids: {
7429
+ items: { format: 'uuid', type: 'string' },
7430
+ type: 'array',
7431
+ },
7432
+ limit: { default: 500, format: 'float', type: 'number' },
7433
+ },
7434
+ required: ['device_ids'],
7435
+ type: 'object',
7436
+ },
7437
+ {
7438
+ properties: {
7439
+ acs_system_ids: {
7440
+ items: { format: 'uuid', type: 'string' },
7441
+ type: 'array',
7442
+ },
7443
+ limit: { default: 500, format: 'float', type: 'number' },
7444
+ },
7445
+ required: ['acs_system_ids'],
7446
+ type: 'object',
7447
+ },
7448
+ ],
7449
+ },
7450
+ },
7451
+ },
7452
+ },
7453
+ responses: {
7454
+ 200: {
7455
+ content: {
7456
+ 'application/json': {
7457
+ schema: {
7458
+ properties: {
7459
+ devices: {
7460
+ items: { $ref: '#/components/schemas/device' },
7461
+ type: 'array',
7462
+ },
7463
+ ok: { type: 'boolean' },
7464
+ },
7465
+ required: ['devices', 'ok'],
7466
+ type: 'object',
7467
+ },
7468
+ },
7469
+ },
7470
+ description: 'OK',
7471
+ },
7472
+ 400: { description: 'Bad Request' },
7473
+ 401: { description: 'Unauthorized' },
7474
+ },
7475
+ security: [
7476
+ { pat_with_workspace: [] },
7477
+ { console_session: [] },
7478
+ { api_key: [] },
7479
+ ],
7480
+ summary: '/acs/encoders/list',
7481
+ tags: ['/acs'],
7482
+ 'x-fern-sdk-group-name': ['acs', 'encoders'],
7483
+ 'x-fern-sdk-method-name': 'list',
7484
+ 'x-fern-sdk-return-value': 'devices',
7485
+ },
7486
+ },
7403
7487
  '/acs/encoders/read_card': {
7404
7488
  post: {
7405
7489
  operationId: 'acsEncodersReadCardPost',