We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82e5fb3 commit e9f3d32Copy full SHA for e9f3d32
packages/shared/src/types.ts
@@ -1,9 +1,24 @@
1
export type PrimitiveValue = null | boolean | string | number;
2
3
export enum ProviderEvents {
4
+ /**
5
+ * The provider is ready to evaluate flags.
6
+ */
7
Ready = 'PROVIDER_READY',
8
+
9
10
+ * The provider is in an error state.
11
12
Error = 'PROVIDER_ERROR',
13
14
15
+ * The flag configuration in the source-of-truth has changed.
16
17
ConfigurationChanged = 'PROVIDER_CONFIGURATION_CHANGED',
18
19
20
+ * The provider is transitioning to a state of unavailability.
21
22
Shutdown = 'PROVIDER_SHUTDOWN',
23
};
24
0 commit comments