@stytch/vanilla-js 5.5.2 → 5.5.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 5.5.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 42982634: Admin Portal's SSO configuration page now has improved IdP specific instructions.
8
+
9
+ ## 5.5.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 5b117909: Remove unused errorMessage field.
14
+ - Updated dependencies [f77f278b]
15
+ - Updated dependencies [5b117909]
16
+ - Updated dependencies [64abf2d2]
17
+ - @stytch/core@2.30.0
18
+
3
19
  ## 5.5.2
4
20
 
5
21
  ### Patch Changes
@@ -19,7 +19,7 @@ export declare class NetworkClient implements INetworkClient {
19
19
  };
20
20
  }): void;
21
21
  createTelemetryBlob(): SDKTelemetry;
22
- fetchSDK<T extends ResponseCommon>({ url, body, errorMessage, method }: SDKRequestInfo): Promise<T>;
23
- retriableFetchSDK<T extends ResponseCommon>({ url, body, errorMessage, method, retryCallback, }: RetriableSDKRequestInfo): Promise<T>;
22
+ fetchSDK<T extends ResponseCommon>({ url, body, method }: SDKRequestInfo): Promise<T>;
23
+ retriableFetchSDK<T extends ResponseCommon>({ url, body, method, retryCallback, }: RetriableSDKRequestInfo): Promise<T>;
24
24
  buildSDKUrl(url: string): string;
25
25
  }
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const IdpField: ({ title, value, isCopyable }: {
3
+ title: string;
4
+ value: string;
5
+ isCopyable?: boolean | undefined;
6
+ }) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const Instruction: ({ children }: {
3
+ children: React.ReactNode;
4
+ }) => React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface InstructionSetProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const InstructionSet: ({ children }: InstructionSetProps) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const PaddedContainer: ({ children }: {
3
+ children: React.ReactNode;
4
+ }) => React.JSX.Element;