@expresscsv/react 0.1.15 → 0.1.17
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/README.md +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -2746,6 +2746,13 @@ declare interface ExpressCSVLocale {
|
|
|
2746
2746
|
matched: string;
|
|
2747
2747
|
unmatched: string;
|
|
2748
2748
|
custom: string;
|
|
2749
|
+
nextDisabledUpload: string;
|
|
2750
|
+
nextDisabledSelectSheet: string;
|
|
2751
|
+
nextDisabledSelectHeader: string;
|
|
2752
|
+
nextDisabledMatchColumns: string;
|
|
2753
|
+
nextDisabledMatchOptions: string;
|
|
2754
|
+
nextDisabledReviewValidating: string;
|
|
2755
|
+
nextDisabledReviewInvalid: string;
|
|
2749
2756
|
};
|
|
2750
2757
|
widget: {
|
|
2751
2758
|
title: string;
|
|
@@ -3777,6 +3784,13 @@ export declare interface WebhookConfig {
|
|
|
3777
3784
|
retries?: number;
|
|
3778
3785
|
/** Arbitrary developer-provided metadata */
|
|
3779
3786
|
metadata?: Record<string, unknown>;
|
|
3787
|
+
/**
|
|
3788
|
+
* Whether to wait for the delivery service to confirm the webhook was
|
|
3789
|
+
* successfully received before considering the import complete.
|
|
3790
|
+
* When false, the import completes as soon as all chunks are queued.
|
|
3791
|
+
* Default: true
|
|
3792
|
+
*/
|
|
3793
|
+
awaitWebhookArrival?: boolean;
|
|
3780
3794
|
}
|
|
3781
3795
|
|
|
3782
3796
|
/**
|
package/dist/index.d.mts
CHANGED
|
@@ -2746,6 +2746,13 @@ declare interface ExpressCSVLocale {
|
|
|
2746
2746
|
matched: string;
|
|
2747
2747
|
unmatched: string;
|
|
2748
2748
|
custom: string;
|
|
2749
|
+
nextDisabledUpload: string;
|
|
2750
|
+
nextDisabledSelectSheet: string;
|
|
2751
|
+
nextDisabledSelectHeader: string;
|
|
2752
|
+
nextDisabledMatchColumns: string;
|
|
2753
|
+
nextDisabledMatchOptions: string;
|
|
2754
|
+
nextDisabledReviewValidating: string;
|
|
2755
|
+
nextDisabledReviewInvalid: string;
|
|
2749
2756
|
};
|
|
2750
2757
|
widget: {
|
|
2751
2758
|
title: string;
|
|
@@ -3777,6 +3784,13 @@ export declare interface WebhookConfig {
|
|
|
3777
3784
|
retries?: number;
|
|
3778
3785
|
/** Arbitrary developer-provided metadata */
|
|
3779
3786
|
metadata?: Record<string, unknown>;
|
|
3787
|
+
/**
|
|
3788
|
+
* Whether to wait for the delivery service to confirm the webhook was
|
|
3789
|
+
* successfully received before considering the import complete.
|
|
3790
|
+
* When false, the import completes as soon as all chunks are queued.
|
|
3791
|
+
* Default: true
|
|
3792
|
+
*/
|
|
3793
|
+
awaitWebhookArrival?: boolean;
|
|
3780
3794
|
}
|
|
3781
3795
|
|
|
3782
3796
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2746,6 +2746,13 @@ declare interface ExpressCSVLocale {
|
|
|
2746
2746
|
matched: string;
|
|
2747
2747
|
unmatched: string;
|
|
2748
2748
|
custom: string;
|
|
2749
|
+
nextDisabledUpload: string;
|
|
2750
|
+
nextDisabledSelectSheet: string;
|
|
2751
|
+
nextDisabledSelectHeader: string;
|
|
2752
|
+
nextDisabledMatchColumns: string;
|
|
2753
|
+
nextDisabledMatchOptions: string;
|
|
2754
|
+
nextDisabledReviewValidating: string;
|
|
2755
|
+
nextDisabledReviewInvalid: string;
|
|
2749
2756
|
};
|
|
2750
2757
|
widget: {
|
|
2751
2758
|
title: string;
|
|
@@ -3777,6 +3784,13 @@ export declare interface WebhookConfig {
|
|
|
3777
3784
|
retries?: number;
|
|
3778
3785
|
/** Arbitrary developer-provided metadata */
|
|
3779
3786
|
metadata?: Record<string, unknown>;
|
|
3787
|
+
/**
|
|
3788
|
+
* Whether to wait for the delivery service to confirm the webhook was
|
|
3789
|
+
* successfully received before considering the import complete.
|
|
3790
|
+
* When false, the import completes as soon as all chunks are queued.
|
|
3791
|
+
* Default: true
|
|
3792
|
+
*/
|
|
3793
|
+
awaitWebhookArrival?: boolean;
|
|
3780
3794
|
}
|
|
3781
3795
|
|
|
3782
3796
|
/**
|