@seamapi/types 1.278.0 → 1.279.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
|
@@ -23488,6 +23488,7 @@ export interface Routes {
|
|
|
23488
23488
|
connect_partner_name?: ((string | null) | null) | undefined;
|
|
23489
23489
|
is_sandbox?: boolean;
|
|
23490
23490
|
webview_primary_button_color?: string | undefined;
|
|
23491
|
+
webview_primary_button_text_color?: string | undefined;
|
|
23491
23492
|
webview_logo_shape?: ('circle' | 'square') | undefined;
|
|
23492
23493
|
};
|
|
23493
23494
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -17193,6 +17193,7 @@ export default {
|
|
|
17193
17193
|
type: 'string',
|
|
17194
17194
|
},
|
|
17195
17195
|
webview_primary_button_color: { type: 'string' },
|
|
17196
|
+
webview_primary_button_text_color: { type: 'string' },
|
|
17196
17197
|
},
|
|
17197
17198
|
required: ['name'],
|
|
17198
17199
|
type: 'object',
|
|
@@ -29964,6 +29964,7 @@ export interface Routes {
|
|
|
29964
29964
|
connect_partner_name?: ((string | null) | null) | undefined
|
|
29965
29965
|
is_sandbox?: boolean
|
|
29966
29966
|
webview_primary_button_color?: string | undefined
|
|
29967
|
+
webview_primary_button_text_color?: string | undefined
|
|
29967
29968
|
webview_logo_shape?: ('circle' | 'square') | undefined
|
|
29968
29969
|
}
|
|
29969
29970
|
commonParams: {}
|