@seamapi/types 1.650.0 → 1.652.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 +92 -54
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -55
- package/dist/index.cjs +92 -54
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +12 -14
- package/lib/seam/connect/models/customer/customer-portal.js +11 -5
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +83 -45
- package/lib/seam/connect/openapi.js +89 -51
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +11 -5
- package/src/lib/seam/connect/openapi.ts +92 -54
- package/src/lib/seam/connect/route-types.ts +16 -10
package/dist/connect.cjs
CHANGED
|
@@ -43278,10 +43278,16 @@ var openapi_default = {
|
|
|
43278
43278
|
manage_devices: { exclude: false },
|
|
43279
43279
|
organize: { exclude: false }
|
|
43280
43280
|
},
|
|
43281
|
-
is_embedded: false
|
|
43281
|
+
is_embedded: false,
|
|
43282
|
+
locale: "auto"
|
|
43282
43283
|
},
|
|
43283
43284
|
description: "Configuration for a customer portal",
|
|
43284
43285
|
properties: {
|
|
43286
|
+
customization_profile_id: {
|
|
43287
|
+
description: "The ID of the customization profile to use for the portal.",
|
|
43288
|
+
format: "uuid",
|
|
43289
|
+
type: "string"
|
|
43290
|
+
},
|
|
43285
43291
|
features: {
|
|
43286
43292
|
default: {},
|
|
43287
43293
|
properties: {
|
|
@@ -43299,11 +43305,6 @@ var openapi_default = {
|
|
|
43299
43305
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
43300
43306
|
type: "boolean"
|
|
43301
43307
|
},
|
|
43302
|
-
customization_profile_id: {
|
|
43303
|
-
description: "The ID of the customization profile to use for the portal.",
|
|
43304
|
-
format: "uuid",
|
|
43305
|
-
type: "string"
|
|
43306
|
-
},
|
|
43307
43308
|
exclude: {
|
|
43308
43309
|
default: false,
|
|
43309
43310
|
description: "Whether to exclude this feature from the portal.",
|
|
@@ -43496,6 +43497,12 @@ var openapi_default = {
|
|
|
43496
43497
|
}
|
|
43497
43498
|
},
|
|
43498
43499
|
type: "object"
|
|
43500
|
+
},
|
|
43501
|
+
locale: {
|
|
43502
|
+
default: "auto",
|
|
43503
|
+
description: "The locale to use for the portal.",
|
|
43504
|
+
enum: ["en-US", "pt-PT", "auto"],
|
|
43505
|
+
type: "string"
|
|
43499
43506
|
}
|
|
43500
43507
|
},
|
|
43501
43508
|
type: "object"
|
|
@@ -54279,7 +54286,7 @@ var openapi_default = {
|
|
|
54279
54286
|
},
|
|
54280
54287
|
"/seam/customer/v1/connectors/connector_types": {
|
|
54281
54288
|
get: {
|
|
54282
|
-
description: "Lists all available connector types and their
|
|
54289
|
+
description: "Lists all available connector types and their editable fields for UI input.",
|
|
54283
54290
|
operationId: "seamCustomerV1ConnectorsConnectorTypesGet",
|
|
54284
54291
|
responses: {
|
|
54285
54292
|
200: {
|
|
@@ -54293,30 +54300,39 @@ var openapi_default = {
|
|
|
54293
54300
|
connector_type: { type: "string" },
|
|
54294
54301
|
description: { type: "string" },
|
|
54295
54302
|
display_name: { type: "string" },
|
|
54296
|
-
|
|
54297
|
-
|
|
54298
|
-
|
|
54299
|
-
|
|
54300
|
-
|
|
54301
|
-
|
|
54302
|
-
|
|
54303
|
-
|
|
54304
|
-
|
|
54305
|
-
|
|
54306
|
-
|
|
54303
|
+
editable_fields: {
|
|
54304
|
+
items: {
|
|
54305
|
+
properties: {
|
|
54306
|
+
description: { type: "string" },
|
|
54307
|
+
display_name: { type: "string" },
|
|
54308
|
+
name: { type: "string" },
|
|
54309
|
+
required: { type: "boolean" },
|
|
54310
|
+
type: {
|
|
54311
|
+
enum: [
|
|
54312
|
+
"string",
|
|
54313
|
+
"string[]",
|
|
54314
|
+
"number",
|
|
54315
|
+
"boolean"
|
|
54316
|
+
],
|
|
54317
|
+
type: "string"
|
|
54318
|
+
}
|
|
54319
|
+
},
|
|
54320
|
+
required: [
|
|
54321
|
+
"name",
|
|
54322
|
+
"display_name",
|
|
54323
|
+
"description",
|
|
54324
|
+
"type",
|
|
54325
|
+
"required"
|
|
54326
|
+
],
|
|
54327
|
+
type: "object"
|
|
54307
54328
|
},
|
|
54308
|
-
|
|
54309
|
-
"base_api_url",
|
|
54310
|
-
"polling_enabled",
|
|
54311
|
-
"polling_frequency_minutes"
|
|
54312
|
-
],
|
|
54313
|
-
type: "object"
|
|
54329
|
+
type: "array"
|
|
54314
54330
|
}
|
|
54315
54331
|
},
|
|
54316
54332
|
required: [
|
|
54317
54333
|
"connector_type",
|
|
54318
54334
|
"display_name",
|
|
54319
|
-
"
|
|
54335
|
+
"editable_fields"
|
|
54320
54336
|
],
|
|
54321
54337
|
type: "object"
|
|
54322
54338
|
},
|
|
@@ -54349,7 +54365,7 @@ var openapi_default = {
|
|
|
54349
54365
|
"x-undocumented": "Internal endpoint for Console."
|
|
54350
54366
|
},
|
|
54351
54367
|
post: {
|
|
54352
|
-
description: "Lists all available connector types and their
|
|
54368
|
+
description: "Lists all available connector types and their editable fields for UI input.",
|
|
54353
54369
|
operationId: "seamCustomerV1ConnectorsConnectorTypesPost",
|
|
54354
54370
|
responses: {
|
|
54355
54371
|
200: {
|
|
@@ -54363,30 +54379,39 @@ var openapi_default = {
|
|
|
54363
54379
|
connector_type: { type: "string" },
|
|
54364
54380
|
description: { type: "string" },
|
|
54365
54381
|
display_name: { type: "string" },
|
|
54366
|
-
|
|
54367
|
-
|
|
54368
|
-
|
|
54369
|
-
|
|
54370
|
-
|
|
54371
|
-
|
|
54372
|
-
|
|
54373
|
-
|
|
54374
|
-
|
|
54375
|
-
|
|
54376
|
-
|
|
54382
|
+
editable_fields: {
|
|
54383
|
+
items: {
|
|
54384
|
+
properties: {
|
|
54385
|
+
description: { type: "string" },
|
|
54386
|
+
display_name: { type: "string" },
|
|
54387
|
+
name: { type: "string" },
|
|
54388
|
+
required: { type: "boolean" },
|
|
54389
|
+
type: {
|
|
54390
|
+
enum: [
|
|
54391
|
+
"string",
|
|
54392
|
+
"string[]",
|
|
54393
|
+
"number",
|
|
54394
|
+
"boolean"
|
|
54395
|
+
],
|
|
54396
|
+
type: "string"
|
|
54397
|
+
}
|
|
54398
|
+
},
|
|
54399
|
+
required: [
|
|
54400
|
+
"name",
|
|
54401
|
+
"display_name",
|
|
54402
|
+
"description",
|
|
54403
|
+
"type",
|
|
54404
|
+
"required"
|
|
54405
|
+
],
|
|
54406
|
+
type: "object"
|
|
54377
54407
|
},
|
|
54378
|
-
|
|
54379
|
-
"base_api_url",
|
|
54380
|
-
"polling_enabled",
|
|
54381
|
-
"polling_frequency_minutes"
|
|
54382
|
-
],
|
|
54383
|
-
type: "object"
|
|
54408
|
+
type: "array"
|
|
54384
54409
|
}
|
|
54385
54410
|
},
|
|
54386
54411
|
required: [
|
|
54387
54412
|
"connector_type",
|
|
54388
54413
|
"display_name",
|
|
54389
|
-
"
|
|
54414
|
+
"editable_fields"
|
|
54390
54415
|
],
|
|
54391
54416
|
type: "object"
|
|
54392
54417
|
},
|
|
@@ -54803,6 +54828,7 @@ var openapi_default = {
|
|
|
54803
54828
|
},
|
|
54804
54829
|
{
|
|
54805
54830
|
properties: {
|
|
54831
|
+
auth_token: { type: "string" },
|
|
54806
54832
|
client_id: {
|
|
54807
54833
|
description: "RMS client ID for authentication",
|
|
54808
54834
|
minLength: 1,
|
|
@@ -55517,6 +55543,11 @@ var openapi_default = {
|
|
|
55517
55543
|
],
|
|
55518
55544
|
type: "string"
|
|
55519
55545
|
},
|
|
55546
|
+
customization_profile_id: {
|
|
55547
|
+
description: "The ID of the customization profile to use for the portal.",
|
|
55548
|
+
format: "uuid",
|
|
55549
|
+
type: "string"
|
|
55550
|
+
},
|
|
55520
55551
|
features: {
|
|
55521
55552
|
default: { $ref: "#/components/schemas/access_code" },
|
|
55522
55553
|
properties: {
|
|
@@ -55536,11 +55567,6 @@ var openapi_default = {
|
|
|
55536
55567
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
55537
55568
|
type: "boolean"
|
|
55538
55569
|
},
|
|
55539
|
-
customization_profile_id: {
|
|
55540
|
-
description: "The ID of the customization profile to use for the portal.",
|
|
55541
|
-
format: "uuid",
|
|
55542
|
-
type: "string"
|
|
55543
|
-
},
|
|
55544
55570
|
exclude: {
|
|
55545
55571
|
default: false,
|
|
55546
55572
|
description: "Whether to exclude this feature from the portal.",
|
|
@@ -55743,6 +55769,12 @@ var openapi_default = {
|
|
|
55743
55769
|
}
|
|
55744
55770
|
},
|
|
55745
55771
|
type: "object"
|
|
55772
|
+
},
|
|
55773
|
+
locale: {
|
|
55774
|
+
default: "auto",
|
|
55775
|
+
description: "The locale to use for the portal.",
|
|
55776
|
+
enum: ["en-US", "pt-PT", "auto"],
|
|
55777
|
+
type: "string"
|
|
55746
55778
|
}
|
|
55747
55779
|
},
|
|
55748
55780
|
type: "object"
|
|
@@ -55808,6 +55840,11 @@ var openapi_default = {
|
|
|
55808
55840
|
],
|
|
55809
55841
|
type: "string"
|
|
55810
55842
|
},
|
|
55843
|
+
customization_profile_id: {
|
|
55844
|
+
description: "The ID of the customization profile to use for the portal.",
|
|
55845
|
+
format: "uuid",
|
|
55846
|
+
type: "string"
|
|
55847
|
+
},
|
|
55811
55848
|
features: {
|
|
55812
55849
|
default: { $ref: "#/components/schemas/access_code" },
|
|
55813
55850
|
properties: {
|
|
@@ -55827,11 +55864,6 @@ var openapi_default = {
|
|
|
55827
55864
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
55828
55865
|
type: "boolean"
|
|
55829
55866
|
},
|
|
55830
|
-
customization_profile_id: {
|
|
55831
|
-
description: "The ID of the customization profile to use for the portal.",
|
|
55832
|
-
format: "uuid",
|
|
55833
|
-
type: "string"
|
|
55834
|
-
},
|
|
55835
55867
|
exclude: {
|
|
55836
55868
|
default: false,
|
|
55837
55869
|
description: "Whether to exclude this feature from the portal.",
|
|
@@ -56034,6 +56066,12 @@ var openapi_default = {
|
|
|
56034
56066
|
}
|
|
56035
56067
|
},
|
|
56036
56068
|
type: "object"
|
|
56069
|
+
},
|
|
56070
|
+
locale: {
|
|
56071
|
+
default: "auto",
|
|
56072
|
+
description: "The locale to use for the portal.",
|
|
56073
|
+
enum: ["en-US", "pt-PT", "auto"],
|
|
56074
|
+
type: "string"
|
|
56037
56075
|
}
|
|
56038
56076
|
},
|
|
56039
56077
|
type: "object"
|