@supernova-studio/client 1.82.3 → 1.83.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/index.d.mts +87 -3
- package/dist/index.d.ts +87 -3
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -136,6 +136,7 @@ var FeaturesSummary = z7.object({
|
|
|
136
136
|
designSystemSourceAutoImport: featureToggleSchema,
|
|
137
137
|
designSystemSlug: featureToggleSchema,
|
|
138
138
|
ipWhitelisting: featureToggleSchema,
|
|
139
|
+
customLogin: featureToggleSchema,
|
|
139
140
|
npmRegistry: featureToggleSchema,
|
|
140
141
|
sso: featureToggleSchema,
|
|
141
142
|
workspacePaidSeats: featureLimitedSchema,
|
|
@@ -8690,7 +8691,9 @@ var IntegrationOauthPlatform = z270.enum(["Desktop", "Browser"]);
|
|
|
8690
8691
|
var IntegrationOauthCallbackState = z270.enum(["Success", "Error"]);
|
|
8691
8692
|
var DTOWorkspaceIntegrationOauthInput = z270.object({
|
|
8692
8693
|
type: IntegrationType,
|
|
8693
|
-
platform: IntegrationOauthPlatform.optional().default("Browser")
|
|
8694
|
+
platform: IntegrationOauthPlatform.optional().default("Browser"),
|
|
8695
|
+
authId: z270.string().optional()
|
|
8696
|
+
// Allow FE client to distinguish between multiple parallel OAuth flows, useful for desktop where multiple flows can be initiated in parallel
|
|
8694
8697
|
});
|
|
8695
8698
|
var DTOWorkspaceIntegrationPATInput = z270.object({
|
|
8696
8699
|
type: IntegrationType,
|
|
@@ -10367,7 +10370,7 @@ var DTOProvisionFeatureSandboxInput = z318.object({
|
|
|
10367
10370
|
parentMessageId: z318.string().optional()
|
|
10368
10371
|
});
|
|
10369
10372
|
var DTOProvisionFeatureSandboxResponse = z318.object({
|
|
10370
|
-
|
|
10373
|
+
ok: z318.boolean()
|
|
10371
10374
|
});
|
|
10372
10375
|
var DTOKeepAliveFeatureSandboxResponse = z318.object({
|
|
10373
10376
|
sandbox: DTOFeatureSandbox
|