@amp-labs/react 2.8.9 → 2.9.1

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/build/index.d.ts CHANGED
@@ -1883,6 +1883,11 @@ export declare interface UpdateInstallationConfigContent {
1883
1883
 
1884
1884
  export declare function useAmpersandProviderProps(): AmpersandContextValue;
1885
1885
 
1886
+ /**
1887
+ * Legacy hook for backwards compatibility (use useLocalConfig instead)
1888
+ * @deprecated
1889
+ * @returns
1890
+ */
1886
1891
  export declare function useConfig(): {
1887
1892
  draft: Partial<ConfigContent>;
1888
1893
  get: () => Partial<ConfigContent>;
@@ -1979,297 +1984,320 @@ declare interface UseIsIntegrationInstalledResult {
1979
1984
  }
1980
1985
 
1981
1986
  /**
1982
- * useManifest retrieves data from `amp.yaml` file, plus the customer's SaaS instance.
1983
- * @returns Manifest object
1984
- *
1985
- * if object is not found, returns null for the object, getRequiredFields, getOptionalFields,
1986
- * getCustomerFieldsForObject.
1987
- *
1988
- */
1989
- export declare function useManifest(): {
1990
- isPending: boolean;
1991
- isFetching: boolean;
1992
- isError: boolean;
1993
- isSuccess: boolean;
1994
- error: Error | null;
1995
- getReadObject: (objectName: string) => {
1996
- object: HydratedIntegrationObject | null;
1997
- getRequiredFields: () => HydratedIntegrationField[] | null;
1998
- getOptionalFields: () => HydratedIntegrationField[] | null;
1999
- };
2000
- getWriteObject: (objectName: string) => {
2001
- object: HydratedIntegrationWriteObject | null;
2002
- };
2003
- getCustomerFieldsForObject: (objectName: string) => {
2004
- allFields: {
2005
- [key: string]: FieldMetadata;
2006
- } | null;
2007
- getField: (field: string) => FieldMetadata | null;
2008
- };
2009
- data: HydratedRevision | undefined;
2010
- };
2011
-
2012
- /**
2013
- * update installation hook
2014
- * @returns {Object} An object containing:
2015
- * - `updateInstallation` (function): A function to update the installation.
2016
- * - `isIdle` (boolean): Whether the mutation is idle.
2017
- * - `isPending` (boolean): Whether the mutation is pending.
2018
- * - `error` (Error | null): The error object, if any.
2019
- * - `errorMsg` (string | null): The error message, if any.
2020
- */
2021
- export declare function useUpdateInstallation(): {
2022
- updateInstallation: ({ config, onSuccess, onError, onSettled, }: {
2023
- config: InstallationConfigContent;
2024
- onSuccess?: (data: Installation) => void;
2025
- onError?: (error: Error) => void;
2026
- onSettled?: () => void;
2027
- }) => void;
2028
- isIdle: boolean;
2029
- isPending: boolean;
2030
- error: Error | null;
2031
- errorMsg: string | null;
2032
- };
2033
-
2034
- /**
2035
- * @type ValueDefault
2036
- *
2037
- * @export
2038
- */
2039
- declare type ValueDefault = ValueDefaultBoolean | ValueDefaultInteger | ValueDefaultString;
2040
-
2041
- /**
2042
- * Ampersand public API
2043
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2044
- *
2045
- * The version of the OpenAPI document: 1.0.0
2046
- *
2047
- *
2048
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2049
- * https://openapi-generator.tech
2050
- * Do not edit the class manually.
2051
- */
2052
- /**
2053
- *
2054
- * @export
2055
- * @interface ValueDefaultBoolean
2056
- */
2057
- declare interface ValueDefaultBoolean {
2058
- /**
2059
- * The value to be used as a default.
2060
- * @type {boolean}
2061
- * @memberof ValueDefaultBoolean
2062
- */
2063
- value: boolean;
2064
- /**
2065
- * Whether the default value should be applied when updating a record.
2066
- * If set to `always`, the default value will be applied when updating a record.
2067
- * If set to `never`, the default value will not be applied when updating a record,
2068
- * only when creating a record.
2069
- * If unspecified, then `always` is assumed.
2070
- * @type {string}
2071
- * @memberof ValueDefaultBoolean
2072
- */
2073
- applyOnUpdate?: ValueDefaultBooleanApplyOnUpdateEnum;
2074
- }
2075
-
2076
- /**
2077
- * @export
2078
- */
2079
- declare const ValueDefaultBooleanApplyOnUpdateEnum: {
2080
- readonly Always: "always";
2081
- readonly Never: "never";
2082
- };
2083
-
2084
- declare type ValueDefaultBooleanApplyOnUpdateEnum = typeof ValueDefaultBooleanApplyOnUpdateEnum[keyof typeof ValueDefaultBooleanApplyOnUpdateEnum];
2085
-
2086
- /**
2087
- * Ampersand public API
2088
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2089
- *
2090
- * The version of the OpenAPI document: 1.0.0
2091
- *
2092
- *
2093
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2094
- * https://openapi-generator.tech
2095
- * Do not edit the class manually.
2096
- */
2097
- /**
2098
- *
2099
- * @export
2100
- * @interface ValueDefaultInteger
2101
- */
2102
- declare interface ValueDefaultInteger {
2103
- /**
2104
- * The value to be used as a default.
2105
- * @type {number}
2106
- * @memberof ValueDefaultInteger
2107
- */
2108
- value: number;
2109
- /**
2110
- * Whether the default value should be applied when updating a record.
2111
- * If set to `always`, the default value will be applied when updating a record.
2112
- * If set to `never`, the default value will not be applied when updating a record,
2113
- * only when creating a record.
2114
- * If unspecified, then `always` is assumed.
2115
- * @type {string}
2116
- * @memberof ValueDefaultInteger
2117
- */
2118
- applyOnUpdate?: ValueDefaultIntegerApplyOnUpdateEnum;
2119
- }
2120
-
2121
- /**
2122
- * @export
2123
- */
2124
- declare const ValueDefaultIntegerApplyOnUpdateEnum: {
2125
- readonly Always: "always";
2126
- readonly Never: "never";
2127
- };
2128
-
2129
- declare type ValueDefaultIntegerApplyOnUpdateEnum = typeof ValueDefaultIntegerApplyOnUpdateEnum[keyof typeof ValueDefaultIntegerApplyOnUpdateEnum];
2130
-
2131
- /**
2132
- * Ampersand public API
2133
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2134
- *
2135
- * The version of the OpenAPI document: 1.0.0
2136
- *
2137
- *
2138
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2139
- * https://openapi-generator.tech
2140
- * Do not edit the class manually.
2141
- */
2142
- /**
2143
- * Configuration to set default write values for object fields.
2144
- * @export
2145
- * @interface ValueDefaults
2146
- */
2147
- declare interface ValueDefaults {
2148
- /**
2149
- * If true, users can set default values for any field.
2150
- * @type {boolean}
2151
- * @memberof ValueDefaults
2152
- */
2153
- allowAnyFields?: boolean;
2154
- }
2155
-
2156
- /**
2157
- * Ampersand public API
2158
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2159
- *
2160
- * The version of the OpenAPI document: 1.0.0
2161
- *
2162
- *
2163
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2164
- * https://openapi-generator.tech
2165
- * Do not edit the class manually.
2166
- */
2167
- /**
2168
- *
2169
- * @export
2170
- * @interface ValueDefaultString
2171
- */
2172
- declare interface ValueDefaultString {
2173
- /**
2174
- * The value to be used as a default.
2175
- * @type {string}
2176
- * @memberof ValueDefaultString
2177
- */
2178
- value: string;
2179
- /**
2180
- * Whether the default value should be applied when updating a record.
2181
- * If set to `always`, the default value will be applied when updating a record.
2182
- * If set to `never`, the default value will not be applied when updating a record,
2183
- * only when creating a record.
2184
- * If unspecified, then `always` is assumed.
2185
- * @type {string}
2186
- * @memberof ValueDefaultString
2187
- */
2188
- applyOnUpdate?: ValueDefaultStringApplyOnUpdateEnum;
2189
- }
2190
-
2191
- /**
2192
- * @export
2193
- */
2194
- declare const ValueDefaultStringApplyOnUpdateEnum: {
2195
- readonly Always: "always";
2196
- readonly Never: "never";
2197
- };
2198
-
2199
- declare type ValueDefaultStringApplyOnUpdateEnum = typeof ValueDefaultStringApplyOnUpdateEnum[keyof typeof ValueDefaultStringApplyOnUpdateEnum];
2200
-
2201
- /**
2202
- *
2203
- * @export
2204
- * @interface WriteConfig
2205
- */
2206
- declare interface WriteConfig {
2207
- /**
2208
- *
2209
- * @type {{ [key: string]: WriteConfigObject; }}
2210
- * @memberof WriteConfig
2211
- */
2212
- objects?: {
2213
- [key: string]: WriteConfigObject;
2214
- };
2215
- }
2216
-
2217
- /**
2218
- *
2219
- * @export
2220
- * @interface WriteConfigObject
2221
- */
2222
- declare interface WriteConfigObject {
2223
- /**
2224
- * The name of the object to write to.
2225
- * @type {string}
2226
- * @memberof WriteConfigObject
2227
- */
2228
- objectName: string;
2229
- /**
2230
- * This is a map of field names to default values. These values will be used when writing to the object.
2231
- * @type {{ [key: string]: ValueDefault; }}
2232
- * @memberof WriteConfigObject
2233
- * @deprecated
2234
- */
2235
- selectedValueDefaults?: {
2236
- [key: string]: ValueDefault;
2237
- };
2238
- /**
2239
- * This is a map of field names to their settings.
2240
- * @type {{ [key: string]: FieldSetting; }}
2241
- * @memberof WriteConfigObject
2242
- */
2243
- selectedFieldSettings?: {
2244
- [key: string]: FieldSetting;
2245
- };
2246
- }
2247
-
2248
- export declare type WriteObjectHandlers = {
2249
- object: BaseWriteConfigObject | undefined;
2250
- setEnableWrite: () => void;
2251
- setDisableWrite: () => void;
2252
- getWriteObject: () => BaseWriteConfigObject | undefined;
2253
- getSelectedFieldSettings: (fieldName: string) => FieldSetting | undefined;
2254
- setSelectedFieldSettings: (params: {
2255
- fieldName: string;
2256
- settings: FieldSetting;
2257
- }) => void;
2258
- getDefaultValues: (fieldName: string) => FieldSettingDefault | undefined;
2259
- setDefaultValues: (params: {
2260
- fieldName: string;
2261
- value: FieldSettingDefault;
2262
- }) => void;
2263
- getWriteOnCreateSetting: (fieldName: string) => FieldSettingWriteOnCreateEnum | undefined;
2264
- setWriteOnCreateSetting: (params: {
2265
- fieldName: string;
2266
- value: FieldSettingWriteOnCreateEnum;
2267
- }) => void;
2268
- getWriteOnUpdateSetting: (fieldName: string) => FieldSettingWriteOnUpdateEnum | undefined;
2269
- setWriteOnUpdateSetting: (params: {
2270
- fieldName: string;
2271
- value: FieldSettingWriteOnUpdateEnum;
2272
- }) => void;
2273
- };
2274
-
2275
- export { }
1987
+ * useLocalConfig is used to manage a local draft state of the config
1988
+ * It's used to manage the config state with getters, setters, and resetters.
1989
+ * @returns {
1990
+ * draft: InstallationConfigContent;
1991
+ * get: () => InstallationConfigContent;
1992
+ * reset: () => void;
1993
+ * setDraft: (draft: InstallationConfigContent) => void;
1994
+ * readObject: (objectName: string) => BaseReadConfigObject | undefined;
1995
+ * writeObject: (objectName: string) => BaseWriteConfigObject | undefined;
1996
+ * proxy: () => ProxyHandlers;
1997
+ * }
1998
+ */
1999
+ export declare function useLocalConfig(): {
2000
+ draft: Partial<ConfigContent>;
2001
+ get: () => Partial<ConfigContent>;
2002
+ reset: () => void;
2003
+ setDraft: Dispatch<SetStateAction<Partial<ConfigContent>>>;
2004
+ readObject: (objectName: string) => ReadObjectHandlers;
2005
+ writeObject: (objectName: string) => WriteObjectHandlers;
2006
+ proxy: () => ProxyHandlers;
2007
+ };
2008
+
2009
+ /**
2010
+ * useManifest retrieves data from `amp.yaml` file, plus the customer's SaaS instance.
2011
+ * @returns Manifest object
2012
+ *
2013
+ * if object is not found, returns null for the object, getRequiredFields, getOptionalFields,
2014
+ * getCustomerFieldsForObject.
2015
+ *
2016
+ */
2017
+ export declare function useManifest(): {
2018
+ isPending: boolean;
2019
+ isFetching: boolean;
2020
+ isError: boolean;
2021
+ isSuccess: boolean;
2022
+ error: Error | null;
2023
+ getReadObject: (objectName: string) => {
2024
+ object: HydratedIntegrationObject | null;
2025
+ getRequiredFields: () => HydratedIntegrationField[] | null;
2026
+ getOptionalFields: () => HydratedIntegrationField[] | null;
2027
+ };
2028
+ getWriteObject: (objectName: string) => {
2029
+ object: HydratedIntegrationWriteObject | null;
2030
+ };
2031
+ getCustomerFieldsForObject: (objectName: string) => {
2032
+ allFields: {
2033
+ [key: string]: FieldMetadata;
2034
+ } | null;
2035
+ getField: (field: string) => FieldMetadata | null;
2036
+ };
2037
+ data: HydratedRevision | undefined;
2038
+ };
2039
+
2040
+ /**
2041
+ * update installation hook
2042
+ * @returns {Object} An object containing:
2043
+ * - `updateInstallation` (function): A function to update the installation.
2044
+ * - `isIdle` (boolean): Whether the mutation is idle.
2045
+ * - `isPending` (boolean): Whether the mutation is pending.
2046
+ * - `error` (Error | null): The error object, if any.
2047
+ * - `errorMsg` (string | null): The error message, if any.
2048
+ */
2049
+ export declare function useUpdateInstallation(): {
2050
+ updateInstallation: ({ config, onSuccess, onError, onSettled, }: {
2051
+ config: InstallationConfigContent;
2052
+ onSuccess?: (data: Installation) => void;
2053
+ onError?: (error: Error) => void;
2054
+ onSettled?: () => void;
2055
+ }) => void;
2056
+ isIdle: boolean;
2057
+ isPending: boolean;
2058
+ error: Error | null;
2059
+ errorMsg: string | null;
2060
+ };
2061
+
2062
+ /**
2063
+ * @type ValueDefault
2064
+ *
2065
+ * @export
2066
+ */
2067
+ declare type ValueDefault = ValueDefaultBoolean | ValueDefaultInteger | ValueDefaultString;
2068
+
2069
+ /**
2070
+ * Ampersand public API
2071
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2072
+ *
2073
+ * The version of the OpenAPI document: 1.0.0
2074
+ *
2075
+ *
2076
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2077
+ * https://openapi-generator.tech
2078
+ * Do not edit the class manually.
2079
+ */
2080
+ /**
2081
+ *
2082
+ * @export
2083
+ * @interface ValueDefaultBoolean
2084
+ */
2085
+ declare interface ValueDefaultBoolean {
2086
+ /**
2087
+ * The value to be used as a default.
2088
+ * @type {boolean}
2089
+ * @memberof ValueDefaultBoolean
2090
+ */
2091
+ value: boolean;
2092
+ /**
2093
+ * Whether the default value should be applied when updating a record.
2094
+ * If set to `always`, the default value will be applied when updating a record.
2095
+ * If set to `never`, the default value will not be applied when updating a record,
2096
+ * only when creating a record.
2097
+ * If unspecified, then `always` is assumed.
2098
+ * @type {string}
2099
+ * @memberof ValueDefaultBoolean
2100
+ */
2101
+ applyOnUpdate?: ValueDefaultBooleanApplyOnUpdateEnum;
2102
+ }
2103
+
2104
+ /**
2105
+ * @export
2106
+ */
2107
+ declare const ValueDefaultBooleanApplyOnUpdateEnum: {
2108
+ readonly Always: "always";
2109
+ readonly Never: "never";
2110
+ };
2111
+
2112
+ declare type ValueDefaultBooleanApplyOnUpdateEnum = typeof ValueDefaultBooleanApplyOnUpdateEnum[keyof typeof ValueDefaultBooleanApplyOnUpdateEnum];
2113
+
2114
+ /**
2115
+ * Ampersand public API
2116
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2117
+ *
2118
+ * The version of the OpenAPI document: 1.0.0
2119
+ *
2120
+ *
2121
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2122
+ * https://openapi-generator.tech
2123
+ * Do not edit the class manually.
2124
+ */
2125
+ /**
2126
+ *
2127
+ * @export
2128
+ * @interface ValueDefaultInteger
2129
+ */
2130
+ declare interface ValueDefaultInteger {
2131
+ /**
2132
+ * The value to be used as a default.
2133
+ * @type {number}
2134
+ * @memberof ValueDefaultInteger
2135
+ */
2136
+ value: number;
2137
+ /**
2138
+ * Whether the default value should be applied when updating a record.
2139
+ * If set to `always`, the default value will be applied when updating a record.
2140
+ * If set to `never`, the default value will not be applied when updating a record,
2141
+ * only when creating a record.
2142
+ * If unspecified, then `always` is assumed.
2143
+ * @type {string}
2144
+ * @memberof ValueDefaultInteger
2145
+ */
2146
+ applyOnUpdate?: ValueDefaultIntegerApplyOnUpdateEnum;
2147
+ }
2148
+
2149
+ /**
2150
+ * @export
2151
+ */
2152
+ declare const ValueDefaultIntegerApplyOnUpdateEnum: {
2153
+ readonly Always: "always";
2154
+ readonly Never: "never";
2155
+ };
2156
+
2157
+ declare type ValueDefaultIntegerApplyOnUpdateEnum = typeof ValueDefaultIntegerApplyOnUpdateEnum[keyof typeof ValueDefaultIntegerApplyOnUpdateEnum];
2158
+
2159
+ /**
2160
+ * Ampersand public API
2161
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2162
+ *
2163
+ * The version of the OpenAPI document: 1.0.0
2164
+ *
2165
+ *
2166
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2167
+ * https://openapi-generator.tech
2168
+ * Do not edit the class manually.
2169
+ */
2170
+ /**
2171
+ * Configuration to set default write values for object fields.
2172
+ * @export
2173
+ * @interface ValueDefaults
2174
+ */
2175
+ declare interface ValueDefaults {
2176
+ /**
2177
+ * If true, users can set default values for any field.
2178
+ * @type {boolean}
2179
+ * @memberof ValueDefaults
2180
+ */
2181
+ allowAnyFields?: boolean;
2182
+ }
2183
+
2184
+ /**
2185
+ * Ampersand public API
2186
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2187
+ *
2188
+ * The version of the OpenAPI document: 1.0.0
2189
+ *
2190
+ *
2191
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2192
+ * https://openapi-generator.tech
2193
+ * Do not edit the class manually.
2194
+ */
2195
+ /**
2196
+ *
2197
+ * @export
2198
+ * @interface ValueDefaultString
2199
+ */
2200
+ declare interface ValueDefaultString {
2201
+ /**
2202
+ * The value to be used as a default.
2203
+ * @type {string}
2204
+ * @memberof ValueDefaultString
2205
+ */
2206
+ value: string;
2207
+ /**
2208
+ * Whether the default value should be applied when updating a record.
2209
+ * If set to `always`, the default value will be applied when updating a record.
2210
+ * If set to `never`, the default value will not be applied when updating a record,
2211
+ * only when creating a record.
2212
+ * If unspecified, then `always` is assumed.
2213
+ * @type {string}
2214
+ * @memberof ValueDefaultString
2215
+ */
2216
+ applyOnUpdate?: ValueDefaultStringApplyOnUpdateEnum;
2217
+ }
2218
+
2219
+ /**
2220
+ * @export
2221
+ */
2222
+ declare const ValueDefaultStringApplyOnUpdateEnum: {
2223
+ readonly Always: "always";
2224
+ readonly Never: "never";
2225
+ };
2226
+
2227
+ declare type ValueDefaultStringApplyOnUpdateEnum = typeof ValueDefaultStringApplyOnUpdateEnum[keyof typeof ValueDefaultStringApplyOnUpdateEnum];
2228
+
2229
+ /**
2230
+ *
2231
+ * @export
2232
+ * @interface WriteConfig
2233
+ */
2234
+ declare interface WriteConfig {
2235
+ /**
2236
+ *
2237
+ * @type {{ [key: string]: WriteConfigObject; }}
2238
+ * @memberof WriteConfig
2239
+ */
2240
+ objects?: {
2241
+ [key: string]: WriteConfigObject;
2242
+ };
2243
+ }
2244
+
2245
+ /**
2246
+ *
2247
+ * @export
2248
+ * @interface WriteConfigObject
2249
+ */
2250
+ declare interface WriteConfigObject {
2251
+ /**
2252
+ * The name of the object to write to.
2253
+ * @type {string}
2254
+ * @memberof WriteConfigObject
2255
+ */
2256
+ objectName: string;
2257
+ /**
2258
+ * This is a map of field names to default values. These values will be used when writing to the object.
2259
+ * @type {{ [key: string]: ValueDefault; }}
2260
+ * @memberof WriteConfigObject
2261
+ * @deprecated
2262
+ */
2263
+ selectedValueDefaults?: {
2264
+ [key: string]: ValueDefault;
2265
+ };
2266
+ /**
2267
+ * This is a map of field names to their settings.
2268
+ * @type {{ [key: string]: FieldSetting; }}
2269
+ * @memberof WriteConfigObject
2270
+ */
2271
+ selectedFieldSettings?: {
2272
+ [key: string]: FieldSetting;
2273
+ };
2274
+ }
2275
+
2276
+ export declare type WriteObjectHandlers = {
2277
+ object: BaseWriteConfigObject | undefined;
2278
+ setEnableWrite: () => void;
2279
+ setDisableWrite: () => void;
2280
+ getWriteObject: () => BaseWriteConfigObject | undefined;
2281
+ getSelectedFieldSettings: (fieldName: string) => FieldSetting | undefined;
2282
+ setSelectedFieldSettings: (params: {
2283
+ fieldName: string;
2284
+ settings: FieldSetting;
2285
+ }) => void;
2286
+ getDefaultValues: (fieldName: string) => FieldSettingDefault | undefined;
2287
+ setDefaultValues: (params: {
2288
+ fieldName: string;
2289
+ value: FieldSettingDefault;
2290
+ }) => void;
2291
+ getWriteOnCreateSetting: (fieldName: string) => FieldSettingWriteOnCreateEnum | undefined;
2292
+ setWriteOnCreateSetting: (params: {
2293
+ fieldName: string;
2294
+ value: FieldSettingWriteOnCreateEnum;
2295
+ }) => void;
2296
+ getWriteOnUpdateSetting: (fieldName: string) => FieldSettingWriteOnUpdateEnum | undefined;
2297
+ setWriteOnUpdateSetting: (params: {
2298
+ fieldName: string;
2299
+ value: FieldSettingWriteOnUpdateEnum;
2300
+ }) => void;
2301
+ };
2302
+
2303
+ export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amp-labs/react",
3
- "version": "2.8.9",
3
+ "version": "2.9.1",
4
4
  "description": "Ampersand React library.",
5
5
  "author": {
6
6
  "name": "Ampersand Labs",