@seamapi/types 1.601.0 → 1.603.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.
@@ -4967,6 +4967,22 @@ export default {
4967
4967
  required: ['type', 'message'],
4968
4968
  type: 'object',
4969
4969
  },
4970
+ {
4971
+ description: 'Error to indicate that there is no card on the encoder.',
4972
+ properties: {
4973
+ message: {
4974
+ description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
4975
+ type: 'string',
4976
+ },
4977
+ type: {
4978
+ description: 'Error type to indicate that there is no card on the encoder.',
4979
+ enum: ['no_card_on_encoder'],
4980
+ type: 'string',
4981
+ },
4982
+ },
4983
+ required: ['type', 'message'],
4984
+ type: 'object',
4985
+ },
4970
4986
  ],
4971
4987
  },
4972
4988
  result: {
@@ -5921,6 +5937,22 @@ export default {
5921
5937
  required: ['type', 'message'],
5922
5938
  type: 'object',
5923
5939
  },
5940
+ {
5941
+ description: 'Error to indicate that there is no card on the encoder.',
5942
+ properties: {
5943
+ message: {
5944
+ description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
5945
+ type: 'string',
5946
+ },
5947
+ type: {
5948
+ description: 'Error type to indicate that there is no card on the encoder.',
5949
+ enum: ['no_card_on_encoder'],
5950
+ type: 'string',
5951
+ },
5952
+ },
5953
+ required: ['type', 'message'],
5954
+ type: 'object',
5955
+ },
5924
5956
  ],
5925
5957
  },
5926
5958
  result: {
@@ -55874,6 +55906,35 @@ export default {
55874
55906
  type: 'string',
55875
55907
  },
55876
55908
  },
55909
+ {
55910
+ in: 'query',
55911
+ name: 'limit',
55912
+ schema: {
55913
+ default: 500,
55914
+ description: 'Maximum number of records to return per page.',
55915
+ exclusiveMinimum: true,
55916
+ minimum: 0,
55917
+ type: 'integer',
55918
+ },
55919
+ },
55920
+ {
55921
+ in: 'query',
55922
+ name: 'created_before',
55923
+ schema: {
55924
+ description: 'Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.',
55925
+ format: 'date-time',
55926
+ type: 'string',
55927
+ },
55928
+ },
55929
+ {
55930
+ in: 'query',
55931
+ name: 'page_cursor',
55932
+ schema: {
55933
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
55934
+ nullable: true,
55935
+ type: 'string',
55936
+ },
55937
+ },
55877
55938
  ],
55878
55939
  responses: {
55879
55940
  200: {
@@ -55882,12 +55943,13 @@ export default {
55882
55943
  schema: {
55883
55944
  properties: {
55884
55945
  ok: { type: 'boolean' },
55946
+ pagination: { $ref: '#/components/schemas/pagination' },
55885
55947
  user_identities: {
55886
55948
  items: { $ref: '#/components/schemas/user_identity' },
55887
55949
  type: 'array',
55888
55950
  },
55889
55951
  },
55890
- required: ['user_identities', 'ok'],
55952
+ required: ['user_identities', 'pagination', 'ok'],
55891
55953
  type: 'object',
55892
55954
  },
55893
55955
  },
@@ -55919,11 +55981,28 @@ export default {
55919
55981
  'application/json': {
55920
55982
  schema: {
55921
55983
  properties: {
55984
+ created_before: {
55985
+ description: 'Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.',
55986
+ format: 'date-time',
55987
+ type: 'string',
55988
+ },
55922
55989
  credential_manager_acs_system_id: {
55923
55990
  description: '`acs_system_id` of the credential manager by which you want to filter the list of user identities.',
55924
55991
  format: 'uuid',
55925
55992
  type: 'string',
55926
55993
  },
55994
+ limit: {
55995
+ default: 500,
55996
+ description: 'Maximum number of records to return per page.',
55997
+ exclusiveMinimum: true,
55998
+ minimum: 0,
55999
+ type: 'integer',
56000
+ },
56001
+ page_cursor: {
56002
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
56003
+ nullable: true,
56004
+ type: 'string',
56005
+ },
55927
56006
  search: {
55928
56007
  description: 'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
55929
56008
  type: 'string',
@@ -55941,12 +56020,13 @@ export default {
55941
56020
  schema: {
55942
56021
  properties: {
55943
56022
  ok: { type: 'boolean' },
56023
+ pagination: { $ref: '#/components/schemas/pagination' },
55944
56024
  user_identities: {
55945
56025
  items: { $ref: '#/components/schemas/user_identity' },
55946
56026
  type: 'array',
55947
56027
  },
55948
56028
  },
55949
- required: ['user_identities', 'ok'],
56029
+ required: ['user_identities', 'pagination', 'ok'],
55950
56030
  type: 'object',
55951
56031
  },
55952
56032
  },
@@ -56966,6 +57046,35 @@ export default {
56966
57046
  type: 'string',
56967
57047
  },
56968
57048
  },
57049
+ {
57050
+ in: 'query',
57051
+ name: 'limit',
57052
+ schema: {
57053
+ default: 500,
57054
+ description: 'Maximum number of records to return per page.',
57055
+ exclusiveMinimum: true,
57056
+ minimum: 0,
57057
+ type: 'integer',
57058
+ },
57059
+ },
57060
+ {
57061
+ in: 'query',
57062
+ name: 'created_before',
57063
+ schema: {
57064
+ description: 'Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.',
57065
+ format: 'date-time',
57066
+ type: 'string',
57067
+ },
57068
+ },
57069
+ {
57070
+ in: 'query',
57071
+ name: 'page_cursor',
57072
+ schema: {
57073
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
57074
+ nullable: true,
57075
+ type: 'string',
57076
+ },
57077
+ },
56969
57078
  ],
56970
57079
  responses: {
56971
57080
  200: {
@@ -56974,6 +57083,7 @@ export default {
56974
57083
  schema: {
56975
57084
  properties: {
56976
57085
  ok: { type: 'boolean' },
57086
+ pagination: { $ref: '#/components/schemas/pagination' },
56977
57087
  user_identities: {
56978
57088
  items: {
56979
57089
  description: 'Represents an unmanaged user identity. Unmanaged user identities do not have keys.',
@@ -57144,7 +57254,7 @@ export default {
57144
57254
  type: 'array',
57145
57255
  },
57146
57256
  },
57147
- required: ['user_identities', 'ok'],
57257
+ required: ['user_identities', 'pagination', 'ok'],
57148
57258
  type: 'object',
57149
57259
  },
57150
57260
  },
@@ -57176,6 +57286,23 @@ export default {
57176
57286
  'application/json': {
57177
57287
  schema: {
57178
57288
  properties: {
57289
+ created_before: {
57290
+ description: 'Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.',
57291
+ format: 'date-time',
57292
+ type: 'string',
57293
+ },
57294
+ limit: {
57295
+ default: 500,
57296
+ description: 'Maximum number of records to return per page.',
57297
+ exclusiveMinimum: true,
57298
+ minimum: 0,
57299
+ type: 'integer',
57300
+ },
57301
+ page_cursor: {
57302
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
57303
+ nullable: true,
57304
+ type: 'string',
57305
+ },
57179
57306
  search: {
57180
57307
  description: 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
57181
57308
  type: 'string',
@@ -57193,6 +57320,7 @@ export default {
57193
57320
  schema: {
57194
57321
  properties: {
57195
57322
  ok: { type: 'boolean' },
57323
+ pagination: { $ref: '#/components/schemas/pagination' },
57196
57324
  user_identities: {
57197
57325
  items: {
57198
57326
  description: 'Represents an unmanaged user identity. Unmanaged user identities do not have keys.',
@@ -57363,7 +57491,7 @@ export default {
57363
57491
  type: 'array',
57364
57492
  },
57365
57493
  },
57366
- required: ['user_identities', 'ok'],
57494
+ required: ['user_identities', 'pagination', 'ok'],
57367
57495
  type: 'object',
57368
57496
  },
57369
57497
  },