@uniformdev/mesh-edgehancer-sdk 19.175.1-alpha.38 → 19.175.1-alpha.41
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 +21 -21
- package/dist/index.d.ts +21 -21
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
@@ -97,7 +97,7 @@ declare const mergedDataTypeSchema: z.ZodObject<{
|
|
97
97
|
request?: string | undefined;
|
98
98
|
}>>;
|
99
99
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
100
|
-
|
100
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
102
102
|
displayName: string;
|
103
103
|
id: string;
|
@@ -136,7 +136,7 @@ declare const mergedDataTypeSchema: z.ZodObject<{
|
|
136
136
|
request?: string | undefined;
|
137
137
|
} | undefined;
|
138
138
|
uiBadgeText?: string | undefined;
|
139
|
-
|
139
|
+
includeUnpublishedData?: boolean | undefined;
|
140
140
|
}, {
|
141
141
|
displayName: string;
|
142
142
|
id: string;
|
@@ -175,7 +175,7 @@ declare const mergedDataTypeSchema: z.ZodObject<{
|
|
175
175
|
request?: string | undefined;
|
176
176
|
} | undefined;
|
177
177
|
uiBadgeText?: string | undefined;
|
178
|
-
|
178
|
+
includeUnpublishedData?: boolean | undefined;
|
179
179
|
}>;
|
180
180
|
/** Declaration of custom edgehancer hooks on a merged data type */
|
181
181
|
type CustomEdgehancerDefinition = z.infer<typeof customEdgehancerDefinitionSchema>;
|
@@ -196,7 +196,7 @@ type MergedDataType = Omit<DataType, 'path' | 'dataSourceId'> & Pick<DataSource,
|
|
196
196
|
* Max length 12
|
197
197
|
*/
|
198
198
|
uiBadgeText?: string;
|
199
|
-
|
199
|
+
includeUnpublishedData?: boolean;
|
200
200
|
};
|
201
201
|
declare const dataResourceSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodUndefined]>;
|
202
202
|
/** A data resource of JSON data retrieved from a data type/data source */
|
@@ -215,7 +215,7 @@ type RequestEdgehancerContext = {
|
|
215
215
|
* that the handler is registered for.
|
216
216
|
*/
|
217
217
|
dataResources: readonly RequestEdgehancerDataResourceContext[];
|
218
|
-
|
218
|
+
includeUnpublishedData?: boolean;
|
219
219
|
};
|
220
220
|
declare const requestEdgehancerDataResourceResolutionResultSchema: z.ZodObject<{
|
221
221
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -383,7 +383,7 @@ declare const edgehancerMergedDataTypeSchema: z.ZodObject<Omit<{
|
|
383
383
|
request?: string | undefined;
|
384
384
|
}>>;
|
385
385
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
386
|
-
|
386
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
387
387
|
}, "displayName" | "id" | "allowedOnComponents" | "badgeIconUrl" | "variables" | "purgeKey" | "edgehancer">, "strip", z.ZodTypeAny, {
|
388
388
|
connectorType: string;
|
389
389
|
url: string;
|
@@ -405,7 +405,7 @@ declare const edgehancerMergedDataTypeSchema: z.ZodObject<Omit<{
|
|
405
405
|
ttl?: number | undefined;
|
406
406
|
localeMapping?: Record<string, string> | undefined;
|
407
407
|
uiBadgeText?: string | undefined;
|
408
|
-
|
408
|
+
includeUnpublishedData?: boolean | undefined;
|
409
409
|
}, {
|
410
410
|
connectorType: string;
|
411
411
|
url: string;
|
@@ -427,7 +427,7 @@ declare const edgehancerMergedDataTypeSchema: z.ZodObject<Omit<{
|
|
427
427
|
ttl?: number | undefined;
|
428
428
|
localeMapping?: Record<string, string> | undefined;
|
429
429
|
uiBadgeText?: string | undefined;
|
430
|
-
|
430
|
+
includeUnpublishedData?: boolean | undefined;
|
431
431
|
}>;
|
432
432
|
type EdgehancerMergedDataType = z.infer<typeof edgehancerMergedDataTypeSchema>;
|
433
433
|
type PreRequestEdgehancerDataResourceContext = {
|
@@ -443,7 +443,7 @@ type PreRequestEdgehancerContext = {
|
|
443
443
|
* that the hook is registered for.
|
444
444
|
*/
|
445
445
|
dataResources: readonly PreRequestEdgehancerDataResourceContext[];
|
446
|
-
|
446
|
+
includeUnpublishedData?: boolean;
|
447
447
|
};
|
448
448
|
declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
449
449
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -523,7 +523,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
523
523
|
request?: string | undefined;
|
524
524
|
}>>;
|
525
525
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
526
|
-
|
526
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
527
527
|
}, "displayName" | "id" | "allowedOnComponents" | "badgeIconUrl" | "variables" | "purgeKey" | "edgehancer">, "strip", z.ZodTypeAny, {
|
528
528
|
connectorType: string;
|
529
529
|
url: string;
|
@@ -545,7 +545,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
545
545
|
ttl?: number | undefined;
|
546
546
|
localeMapping?: Record<string, string> | undefined;
|
547
547
|
uiBadgeText?: string | undefined;
|
548
|
-
|
548
|
+
includeUnpublishedData?: boolean | undefined;
|
549
549
|
}, {
|
550
550
|
connectorType: string;
|
551
551
|
url: string;
|
@@ -567,7 +567,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
567
567
|
ttl?: number | undefined;
|
568
568
|
localeMapping?: Record<string, string> | undefined;
|
569
569
|
uiBadgeText?: string | undefined;
|
570
|
-
|
570
|
+
includeUnpublishedData?: boolean | undefined;
|
571
571
|
}>;
|
572
572
|
}, "strict", z.ZodTypeAny, {
|
573
573
|
dataResource: {
|
@@ -591,7 +591,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
591
591
|
ttl?: number | undefined;
|
592
592
|
localeMapping?: Record<string, string> | undefined;
|
593
593
|
uiBadgeText?: string | undefined;
|
594
|
-
|
594
|
+
includeUnpublishedData?: boolean | undefined;
|
595
595
|
};
|
596
596
|
errors?: string[] | undefined;
|
597
597
|
warnings?: string[] | undefined;
|
@@ -618,7 +618,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
618
618
|
ttl?: number | undefined;
|
619
619
|
localeMapping?: Record<string, string> | undefined;
|
620
620
|
uiBadgeText?: string | undefined;
|
621
|
-
|
621
|
+
includeUnpublishedData?: boolean | undefined;
|
622
622
|
};
|
623
623
|
errors?: string[] | undefined;
|
624
624
|
warnings?: string[] | undefined;
|
@@ -703,7 +703,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
703
703
|
request?: string | undefined;
|
704
704
|
}>>;
|
705
705
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
706
|
-
|
706
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
707
707
|
}, "displayName" | "id" | "allowedOnComponents" | "badgeIconUrl" | "variables" | "purgeKey" | "edgehancer">, "strip", z.ZodTypeAny, {
|
708
708
|
connectorType: string;
|
709
709
|
url: string;
|
@@ -725,7 +725,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
725
725
|
ttl?: number | undefined;
|
726
726
|
localeMapping?: Record<string, string> | undefined;
|
727
727
|
uiBadgeText?: string | undefined;
|
728
|
-
|
728
|
+
includeUnpublishedData?: boolean | undefined;
|
729
729
|
}, {
|
730
730
|
connectorType: string;
|
731
731
|
url: string;
|
@@ -747,7 +747,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
747
747
|
ttl?: number | undefined;
|
748
748
|
localeMapping?: Record<string, string> | undefined;
|
749
749
|
uiBadgeText?: string | undefined;
|
750
|
-
|
750
|
+
includeUnpublishedData?: boolean | undefined;
|
751
751
|
}>;
|
752
752
|
}, "strict", z.ZodTypeAny, {
|
753
753
|
dataResource: {
|
@@ -771,7 +771,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
771
771
|
ttl?: number | undefined;
|
772
772
|
localeMapping?: Record<string, string> | undefined;
|
773
773
|
uiBadgeText?: string | undefined;
|
774
|
-
|
774
|
+
includeUnpublishedData?: boolean | undefined;
|
775
775
|
};
|
776
776
|
errors?: string[] | undefined;
|
777
777
|
warnings?: string[] | undefined;
|
@@ -798,7 +798,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
798
798
|
ttl?: number | undefined;
|
799
799
|
localeMapping?: Record<string, string> | undefined;
|
800
800
|
uiBadgeText?: string | undefined;
|
801
|
-
|
801
|
+
includeUnpublishedData?: boolean | undefined;
|
802
802
|
};
|
803
803
|
errors?: string[] | undefined;
|
804
804
|
warnings?: string[] | undefined;
|
@@ -827,7 +827,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
827
827
|
ttl?: number | undefined;
|
828
828
|
localeMapping?: Record<string, string> | undefined;
|
829
829
|
uiBadgeText?: string | undefined;
|
830
|
-
|
830
|
+
includeUnpublishedData?: boolean | undefined;
|
831
831
|
};
|
832
832
|
errors?: string[] | undefined;
|
833
833
|
warnings?: string[] | undefined;
|
@@ -856,7 +856,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
856
856
|
ttl?: number | undefined;
|
857
857
|
localeMapping?: Record<string, string> | undefined;
|
858
858
|
uiBadgeText?: string | undefined;
|
859
|
-
|
859
|
+
includeUnpublishedData?: boolean | undefined;
|
860
860
|
};
|
861
861
|
errors?: string[] | undefined;
|
862
862
|
warnings?: string[] | undefined;
|
package/dist/index.d.ts
CHANGED
@@ -97,7 +97,7 @@ declare const mergedDataTypeSchema: z.ZodObject<{
|
|
97
97
|
request?: string | undefined;
|
98
98
|
}>>;
|
99
99
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
100
|
-
|
100
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
102
102
|
displayName: string;
|
103
103
|
id: string;
|
@@ -136,7 +136,7 @@ declare const mergedDataTypeSchema: z.ZodObject<{
|
|
136
136
|
request?: string | undefined;
|
137
137
|
} | undefined;
|
138
138
|
uiBadgeText?: string | undefined;
|
139
|
-
|
139
|
+
includeUnpublishedData?: boolean | undefined;
|
140
140
|
}, {
|
141
141
|
displayName: string;
|
142
142
|
id: string;
|
@@ -175,7 +175,7 @@ declare const mergedDataTypeSchema: z.ZodObject<{
|
|
175
175
|
request?: string | undefined;
|
176
176
|
} | undefined;
|
177
177
|
uiBadgeText?: string | undefined;
|
178
|
-
|
178
|
+
includeUnpublishedData?: boolean | undefined;
|
179
179
|
}>;
|
180
180
|
/** Declaration of custom edgehancer hooks on a merged data type */
|
181
181
|
type CustomEdgehancerDefinition = z.infer<typeof customEdgehancerDefinitionSchema>;
|
@@ -196,7 +196,7 @@ type MergedDataType = Omit<DataType, 'path' | 'dataSourceId'> & Pick<DataSource,
|
|
196
196
|
* Max length 12
|
197
197
|
*/
|
198
198
|
uiBadgeText?: string;
|
199
|
-
|
199
|
+
includeUnpublishedData?: boolean;
|
200
200
|
};
|
201
201
|
declare const dataResourceSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodUndefined]>;
|
202
202
|
/** A data resource of JSON data retrieved from a data type/data source */
|
@@ -215,7 +215,7 @@ type RequestEdgehancerContext = {
|
|
215
215
|
* that the handler is registered for.
|
216
216
|
*/
|
217
217
|
dataResources: readonly RequestEdgehancerDataResourceContext[];
|
218
|
-
|
218
|
+
includeUnpublishedData?: boolean;
|
219
219
|
};
|
220
220
|
declare const requestEdgehancerDataResourceResolutionResultSchema: z.ZodObject<{
|
221
221
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -383,7 +383,7 @@ declare const edgehancerMergedDataTypeSchema: z.ZodObject<Omit<{
|
|
383
383
|
request?: string | undefined;
|
384
384
|
}>>;
|
385
385
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
386
|
-
|
386
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
387
387
|
}, "displayName" | "id" | "allowedOnComponents" | "badgeIconUrl" | "variables" | "purgeKey" | "edgehancer">, "strip", z.ZodTypeAny, {
|
388
388
|
connectorType: string;
|
389
389
|
url: string;
|
@@ -405,7 +405,7 @@ declare const edgehancerMergedDataTypeSchema: z.ZodObject<Omit<{
|
|
405
405
|
ttl?: number | undefined;
|
406
406
|
localeMapping?: Record<string, string> | undefined;
|
407
407
|
uiBadgeText?: string | undefined;
|
408
|
-
|
408
|
+
includeUnpublishedData?: boolean | undefined;
|
409
409
|
}, {
|
410
410
|
connectorType: string;
|
411
411
|
url: string;
|
@@ -427,7 +427,7 @@ declare const edgehancerMergedDataTypeSchema: z.ZodObject<Omit<{
|
|
427
427
|
ttl?: number | undefined;
|
428
428
|
localeMapping?: Record<string, string> | undefined;
|
429
429
|
uiBadgeText?: string | undefined;
|
430
|
-
|
430
|
+
includeUnpublishedData?: boolean | undefined;
|
431
431
|
}>;
|
432
432
|
type EdgehancerMergedDataType = z.infer<typeof edgehancerMergedDataTypeSchema>;
|
433
433
|
type PreRequestEdgehancerDataResourceContext = {
|
@@ -443,7 +443,7 @@ type PreRequestEdgehancerContext = {
|
|
443
443
|
* that the hook is registered for.
|
444
444
|
*/
|
445
445
|
dataResources: readonly PreRequestEdgehancerDataResourceContext[];
|
446
|
-
|
446
|
+
includeUnpublishedData?: boolean;
|
447
447
|
};
|
448
448
|
declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
449
449
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -523,7 +523,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
523
523
|
request?: string | undefined;
|
524
524
|
}>>;
|
525
525
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
526
|
-
|
526
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
527
527
|
}, "displayName" | "id" | "allowedOnComponents" | "badgeIconUrl" | "variables" | "purgeKey" | "edgehancer">, "strip", z.ZodTypeAny, {
|
528
528
|
connectorType: string;
|
529
529
|
url: string;
|
@@ -545,7 +545,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
545
545
|
ttl?: number | undefined;
|
546
546
|
localeMapping?: Record<string, string> | undefined;
|
547
547
|
uiBadgeText?: string | undefined;
|
548
|
-
|
548
|
+
includeUnpublishedData?: boolean | undefined;
|
549
549
|
}, {
|
550
550
|
connectorType: string;
|
551
551
|
url: string;
|
@@ -567,7 +567,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
567
567
|
ttl?: number | undefined;
|
568
568
|
localeMapping?: Record<string, string> | undefined;
|
569
569
|
uiBadgeText?: string | undefined;
|
570
|
-
|
570
|
+
includeUnpublishedData?: boolean | undefined;
|
571
571
|
}>;
|
572
572
|
}, "strict", z.ZodTypeAny, {
|
573
573
|
dataResource: {
|
@@ -591,7 +591,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
591
591
|
ttl?: number | undefined;
|
592
592
|
localeMapping?: Record<string, string> | undefined;
|
593
593
|
uiBadgeText?: string | undefined;
|
594
|
-
|
594
|
+
includeUnpublishedData?: boolean | undefined;
|
595
595
|
};
|
596
596
|
errors?: string[] | undefined;
|
597
597
|
warnings?: string[] | undefined;
|
@@ -618,7 +618,7 @@ declare const preRequestEdgehancerDataResourceResultSchema: z.ZodObject<{
|
|
618
618
|
ttl?: number | undefined;
|
619
619
|
localeMapping?: Record<string, string> | undefined;
|
620
620
|
uiBadgeText?: string | undefined;
|
621
|
-
|
621
|
+
includeUnpublishedData?: boolean | undefined;
|
622
622
|
};
|
623
623
|
errors?: string[] | undefined;
|
624
624
|
warnings?: string[] | undefined;
|
@@ -703,7 +703,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
703
703
|
request?: string | undefined;
|
704
704
|
}>>;
|
705
705
|
uiBadgeText: z.ZodOptional<z.ZodString>;
|
706
|
-
|
706
|
+
includeUnpublishedData: z.ZodOptional<z.ZodBoolean>;
|
707
707
|
}, "displayName" | "id" | "allowedOnComponents" | "badgeIconUrl" | "variables" | "purgeKey" | "edgehancer">, "strip", z.ZodTypeAny, {
|
708
708
|
connectorType: string;
|
709
709
|
url: string;
|
@@ -725,7 +725,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
725
725
|
ttl?: number | undefined;
|
726
726
|
localeMapping?: Record<string, string> | undefined;
|
727
727
|
uiBadgeText?: string | undefined;
|
728
|
-
|
728
|
+
includeUnpublishedData?: boolean | undefined;
|
729
729
|
}, {
|
730
730
|
connectorType: string;
|
731
731
|
url: string;
|
@@ -747,7 +747,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
747
747
|
ttl?: number | undefined;
|
748
748
|
localeMapping?: Record<string, string> | undefined;
|
749
749
|
uiBadgeText?: string | undefined;
|
750
|
-
|
750
|
+
includeUnpublishedData?: boolean | undefined;
|
751
751
|
}>;
|
752
752
|
}, "strict", z.ZodTypeAny, {
|
753
753
|
dataResource: {
|
@@ -771,7 +771,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
771
771
|
ttl?: number | undefined;
|
772
772
|
localeMapping?: Record<string, string> | undefined;
|
773
773
|
uiBadgeText?: string | undefined;
|
774
|
-
|
774
|
+
includeUnpublishedData?: boolean | undefined;
|
775
775
|
};
|
776
776
|
errors?: string[] | undefined;
|
777
777
|
warnings?: string[] | undefined;
|
@@ -798,7 +798,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
798
798
|
ttl?: number | undefined;
|
799
799
|
localeMapping?: Record<string, string> | undefined;
|
800
800
|
uiBadgeText?: string | undefined;
|
801
|
-
|
801
|
+
includeUnpublishedData?: boolean | undefined;
|
802
802
|
};
|
803
803
|
errors?: string[] | undefined;
|
804
804
|
warnings?: string[] | undefined;
|
@@ -827,7 +827,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
827
827
|
ttl?: number | undefined;
|
828
828
|
localeMapping?: Record<string, string> | undefined;
|
829
829
|
uiBadgeText?: string | undefined;
|
830
|
-
|
830
|
+
includeUnpublishedData?: boolean | undefined;
|
831
831
|
};
|
832
832
|
errors?: string[] | undefined;
|
833
833
|
warnings?: string[] | undefined;
|
@@ -856,7 +856,7 @@ declare const preRequestEdgehancerResultSchema: z.ZodObject<{
|
|
856
856
|
ttl?: number | undefined;
|
857
857
|
localeMapping?: Record<string, string> | undefined;
|
858
858
|
uiBadgeText?: string | undefined;
|
859
|
-
|
859
|
+
includeUnpublishedData?: boolean | undefined;
|
860
860
|
};
|
861
861
|
errors?: string[] | undefined;
|
862
862
|
warnings?: string[] | undefined;
|
package/dist/index.esm.js
CHANGED
@@ -133,7 +133,7 @@ var mergedDataTypeSchema = z.object({
|
|
133
133
|
localeMapping: z.record(z.string()).optional(),
|
134
134
|
edgehancer: customEdgehancerDefinitionSchema.optional(),
|
135
135
|
uiBadgeText: z.string().max(12).optional(),
|
136
|
-
|
136
|
+
includeUnpublishedData: z.boolean().optional()
|
137
137
|
});
|
138
138
|
assert();
|
139
139
|
var dataResourceSchema = z.union([
|
package/dist/index.js
CHANGED
@@ -171,7 +171,7 @@ var mergedDataTypeSchema = import_zod.z.object({
|
|
171
171
|
localeMapping: import_zod.z.record(import_zod.z.string()).optional(),
|
172
172
|
edgehancer: customEdgehancerDefinitionSchema.optional(),
|
173
173
|
uiBadgeText: import_zod.z.string().max(12).optional(),
|
174
|
-
|
174
|
+
includeUnpublishedData: import_zod.z.boolean().optional()
|
175
175
|
});
|
176
176
|
(0, import_tsafe.assert)();
|
177
177
|
var dataResourceSchema = import_zod.z.union([
|
package/dist/index.mjs
CHANGED
@@ -133,7 +133,7 @@ var mergedDataTypeSchema = z.object({
|
|
133
133
|
localeMapping: z.record(z.string()).optional(),
|
134
134
|
edgehancer: customEdgehancerDefinitionSchema.optional(),
|
135
135
|
uiBadgeText: z.string().max(12).optional(),
|
136
|
-
|
136
|
+
includeUnpublishedData: z.boolean().optional()
|
137
137
|
});
|
138
138
|
assert();
|
139
139
|
var dataResourceSchema = z.union([
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/mesh-edgehancer-sdk",
|
3
|
-
"version": "19.175.1-alpha.
|
3
|
+
"version": "19.175.1-alpha.41+ed05e78371",
|
4
4
|
"description": "Uniform Mesh Edgehancer SDK",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -48,7 +48,7 @@
|
|
48
48
|
"/dist"
|
49
49
|
],
|
50
50
|
"dependencies": {
|
51
|
-
"@uniformdev/canvas": "19.175.1-alpha.
|
51
|
+
"@uniformdev/canvas": "19.175.1-alpha.41+ed05e78371",
|
52
52
|
"tsafe": "1.6.6",
|
53
53
|
"zod": "3.23.8"
|
54
54
|
},
|
@@ -61,5 +61,5 @@
|
|
61
61
|
"publishConfig": {
|
62
62
|
"access": "public"
|
63
63
|
},
|
64
|
-
"gitHead": "
|
64
|
+
"gitHead": "ed05e78371bf8cebba36bf0f9814717dcf57e5b2"
|
65
65
|
}
|