@seamapi/types 1.280.0 → 1.281.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 +2 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -0
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -25060,6 +25060,7 @@ export interface Routes {
|
|
|
25060
25060
|
connect_partner_name?: ((string | null) | null) | undefined;
|
|
25061
25061
|
is_sandbox?: boolean;
|
|
25062
25062
|
webview_primary_button_color?: string | undefined;
|
|
25063
|
+
webview_primary_button_text_color?: string | undefined;
|
|
25063
25064
|
webview_logo_shape?: ('circle' | 'square') | undefined;
|
|
25064
25065
|
};
|
|
25065
25066
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -17844,6 +17844,7 @@ export default {
|
|
|
17844
17844
|
type: 'string',
|
|
17845
17845
|
},
|
|
17846
17846
|
webview_primary_button_color: { type: 'string' },
|
|
17847
|
+
webview_primary_button_text_color: { type: 'string' },
|
|
17847
17848
|
},
|
|
17848
17849
|
required: ['name'],
|
|
17849
17850
|
type: 'object',
|
|
@@ -31536,6 +31536,7 @@ export interface Routes {
|
|
|
31536
31536
|
connect_partner_name?: ((string | null) | null) | undefined
|
|
31537
31537
|
is_sandbox?: boolean
|
|
31538
31538
|
webview_primary_button_color?: string | undefined
|
|
31539
|
+
webview_primary_button_text_color?: string | undefined
|
|
31539
31540
|
webview_logo_shape?: ('circle' | 'square') | undefined
|
|
31540
31541
|
}
|
|
31541
31542
|
commonParams: {}
|