@joeygrable94/utm-src-pub-validators 0.0.69 → 0.0.70

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.cts CHANGED
@@ -179,6 +179,7 @@ declare const SVerifyGroupUserDocument: v.ObjectSchema<{
179
179
  type SVerifyGroupUserDocument = v.InferOutput<typeof SVerifyGroupUserDocument>;
180
180
  declare const SGroupUserDocumentStatus: v.ObjectSchema<{
181
181
  readonly verified: v.BooleanSchema<undefined>;
182
+ readonly is_owner: v.BooleanSchema<undefined>;
182
183
  readonly groupUser: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
183
184
  readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
184
185
  }, undefined>;
package/dist/index.d.ts CHANGED
@@ -179,6 +179,7 @@ declare const SVerifyGroupUserDocument: v.ObjectSchema<{
179
179
  type SVerifyGroupUserDocument = v.InferOutput<typeof SVerifyGroupUserDocument>;
180
180
  declare const SGroupUserDocumentStatus: v.ObjectSchema<{
181
181
  readonly verified: v.BooleanSchema<undefined>;
182
+ readonly is_owner: v.BooleanSchema<undefined>;
182
183
  readonly groupUser: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
183
184
  readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
184
185
  }, undefined>;
package/dist/index.js CHANGED
@@ -632,6 +632,7 @@ var SVerifyGroupUserDocument = v36.object({
632
632
  });
633
633
  var SGroupUserDocumentStatus = v36.object({
634
634
  verified: v36.boolean(),
635
+ is_owner: v36.boolean(),
635
636
  groupUser: v36.nullable(IsValidReferenceDocumentId),
636
637
  scopes: IsValidGroupUserScopes
637
638
  });