@joeygrable94/utm-src-pub-validators 0.0.68 → 0.0.69
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.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -174,6 +174,7 @@ declare const SDeleteGroupUserDocument: v.ObjectSchema<{
|
|
|
174
174
|
type SDeleteGroupUserDocument = v.InferOutput<typeof SDeleteGroupUserDocument>;
|
|
175
175
|
declare const SVerifyGroupUserDocument: v.ObjectSchema<{
|
|
176
176
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
177
|
+
readonly user: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
177
178
|
}, undefined>;
|
|
178
179
|
type SVerifyGroupUserDocument = v.InferOutput<typeof SVerifyGroupUserDocument>;
|
|
179
180
|
declare const SGroupUserDocumentStatus: v.ObjectSchema<{
|
package/dist/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ declare const SDeleteGroupUserDocument: v.ObjectSchema<{
|
|
|
174
174
|
type SDeleteGroupUserDocument = v.InferOutput<typeof SDeleteGroupUserDocument>;
|
|
175
175
|
declare const SVerifyGroupUserDocument: v.ObjectSchema<{
|
|
176
176
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
177
|
+
readonly user: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
177
178
|
}, undefined>;
|
|
178
179
|
type SVerifyGroupUserDocument = v.InferOutput<typeof SVerifyGroupUserDocument>;
|
|
179
180
|
declare const SGroupUserDocumentStatus: v.ObjectSchema<{
|
package/dist/index.js
CHANGED
|
@@ -627,7 +627,8 @@ var SDeleteGroupUserDocument = v36.object({
|
|
|
627
627
|
documentId: IsValidReferenceDocumentId
|
|
628
628
|
});
|
|
629
629
|
var SVerifyGroupUserDocument = v36.object({
|
|
630
|
-
group: IsValidReferenceDocumentId
|
|
630
|
+
group: IsValidReferenceDocumentId,
|
|
631
|
+
user: IsValidReferenceDocumentId
|
|
631
632
|
});
|
|
632
633
|
var SGroupUserDocumentStatus = v36.object({
|
|
633
634
|
verified: v36.boolean(),
|