@seamapi/types 1.520.0 → 1.522.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.
package/dist/connect.cjs CHANGED
@@ -34201,6 +34201,11 @@ var openapi_default = {
34201
34201
  description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
34202
34202
  nullable: true,
34203
34203
  type: "string"
34204
+ },
34205
+ search: {
34206
+ description: "String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`.",
34207
+ minLength: 1,
34208
+ type: "string"
34204
34209
  }
34205
34210
  },
34206
34211
  type: "object"
@@ -35045,9 +35050,10 @@ var openapi_default = {
35045
35050
  items: { $ref: "#/components/schemas/acs_encoder" },
35046
35051
  type: "array"
35047
35052
  },
35048
- ok: { type: "boolean" }
35053
+ ok: { type: "boolean" },
35054
+ pagination: { $ref: "#/components/schemas/pagination" }
35049
35055
  },
35050
- required: ["acs_encoders", "ok"],
35056
+ required: ["acs_encoders", "pagination", "ok"],
35051
35057
  type: "object"
35052
35058
  }
35053
35059
  }
@@ -35077,56 +35083,58 @@ var openapi_default = {
35077
35083
  content: {
35078
35084
  "application/json": {
35079
35085
  schema: {
35080
- oneOf: [
35086
+ allOf: [
35081
35087
  {
35082
- properties: {
35083
- acs_system_id: {
35084
- description: "ID of the access system for which you want to retrieve all encoders.",
35085
- format: "uuid",
35086
- type: "string"
35088
+ oneOf: [
35089
+ {
35090
+ properties: {
35091
+ acs_system_id: {
35092
+ description: "ID of the access system for which you want to retrieve all encoders.",
35093
+ format: "uuid",
35094
+ type: "string"
35095
+ }
35096
+ },
35097
+ required: ["acs_system_id"],
35098
+ type: "object"
35087
35099
  },
35088
- limit: {
35089
- default: 500,
35090
- description: "Number of encoders to return.",
35091
- format: "float",
35092
- type: "number"
35093
- }
35094
- },
35095
- required: ["acs_system_id"],
35096
- type: "object"
35097
- },
35098
- {
35099
- properties: {
35100
- acs_system_ids: {
35101
- description: "IDs of the access systems for which you want to retrieve all encoders.",
35102
- items: { format: "uuid", type: "string" },
35103
- type: "array"
35100
+ {
35101
+ properties: {
35102
+ acs_system_ids: {
35103
+ description: "IDs of the access systems for which you want to retrieve all encoders.",
35104
+ items: { format: "uuid", type: "string" },
35105
+ type: "array"
35106
+ }
35107
+ },
35108
+ required: ["acs_system_ids"],
35109
+ type: "object"
35104
35110
  },
35105
- limit: {
35106
- default: 500,
35107
- description: "Number of encoders to return.",
35108
- format: "float",
35109
- type: "number"
35111
+ {
35112
+ properties: {
35113
+ acs_encoder_ids: {
35114
+ description: "IDs of the encoders that you want to retrieve.",
35115
+ items: { format: "uuid", type: "string" },
35116
+ type: "array"
35117
+ }
35118
+ },
35119
+ required: ["acs_encoder_ids"],
35120
+ type: "object"
35110
35121
  }
35111
- },
35112
- required: ["acs_system_ids"],
35113
- type: "object"
35122
+ ]
35114
35123
  },
35115
35124
  {
35116
35125
  properties: {
35117
- acs_encoder_ids: {
35118
- description: "IDs of the encoders that you want to retrieve.",
35119
- items: { format: "uuid", type: "string" },
35120
- type: "array"
35121
- },
35122
35126
  limit: {
35123
35127
  default: 500,
35124
35128
  description: "Number of encoders to return.",
35125
35129
  format: "float",
35126
35130
  type: "number"
35131
+ },
35132
+ page_cursor: {
35133
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
35134
+ nullable: true,
35135
+ type: "string"
35127
35136
  }
35128
35137
  },
35129
- required: ["acs_encoder_ids"],
35130
35138
  type: "object"
35131
35139
  }
35132
35140
  ]
@@ -35144,9 +35152,10 @@ var openapi_default = {
35144
35152
  items: { $ref: "#/components/schemas/acs_encoder" },
35145
35153
  type: "array"
35146
35154
  },
35147
- ok: { type: "boolean" }
35155
+ ok: { type: "boolean" },
35156
+ pagination: { $ref: "#/components/schemas/pagination" }
35148
35157
  },
35149
- required: ["acs_encoders", "ok"],
35158
+ required: ["acs_encoders", "pagination", "ok"],
35150
35159
  type: "object"
35151
35160
  }
35152
35161
  }