@seamapi/types 1.591.0 → 1.592.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 +5 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +7 -0
- package/lib/seam/connect/models/customer/customer-portal.js +4 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +5 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -82648,6 +82648,13 @@ declare const _default: {
|
|
|
82648
82648
|
default: {};
|
|
82649
82649
|
description: string;
|
|
82650
82650
|
properties: {
|
|
82651
|
+
accepted_providers: {
|
|
82652
|
+
description: string;
|
|
82653
|
+
items: {
|
|
82654
|
+
type: string;
|
|
82655
|
+
};
|
|
82656
|
+
type: string;
|
|
82657
|
+
};
|
|
82651
82658
|
exclude: {
|
|
82652
82659
|
default: boolean;
|
|
82653
82660
|
description: string;
|
|
@@ -138364,6 +138371,8 @@ type Routes = {
|
|
|
138364
138371
|
connect?: {
|
|
138365
138372
|
/** Whether to exclude this feature from the portal. */
|
|
138366
138373
|
exclude?: boolean;
|
|
138374
|
+
/** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
|
|
138375
|
+
accepted_providers?: string[] | undefined;
|
|
138367
138376
|
/** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
|
|
138368
138377
|
excluded_providers?: string[] | undefined;
|
|
138369
138378
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -42650,6 +42650,11 @@ var openapi_default = {
|
|
|
42650
42650
|
default: {},
|
|
42651
42651
|
description: "Configuration for the connect accounts feature.",
|
|
42652
42652
|
properties: {
|
|
42653
|
+
accepted_providers: {
|
|
42654
|
+
description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
|
|
42655
|
+
items: { type: "string" },
|
|
42656
|
+
type: "array"
|
|
42657
|
+
},
|
|
42653
42658
|
exclude: {
|
|
42654
42659
|
default: false,
|
|
42655
42660
|
description: "Whether to exclude this feature from the portal.",
|