@sentry/api 0.289.0 → 0.290.0

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.
@@ -7235,71 +7235,6 @@ export type OrganizationIssueView = {
7235
7235
  starred: boolean;
7236
7236
  stars: number;
7237
7237
  };
7238
- export type OrganizationIssueViewList = Array<{
7239
- id: string;
7240
- createdBy: {
7241
- identities?: Array<{
7242
- id: string;
7243
- name: string;
7244
- organization: {
7245
- slug: string;
7246
- name: string;
7247
- };
7248
- provider: {
7249
- id: string;
7250
- name: string;
7251
- };
7252
- dateVerified: string;
7253
- dateSynced: string;
7254
- }>;
7255
- avatar?: {
7256
- avatarType?: string;
7257
- avatarUuid?: string | null;
7258
- avatarUrl?: string | null;
7259
- };
7260
- authenticators?: Array<unknown>;
7261
- canReset2fa?: boolean;
7262
- id: string;
7263
- name: string;
7264
- username: string;
7265
- email: string;
7266
- avatarUrl: string;
7267
- isActive: boolean;
7268
- isSuspended: boolean;
7269
- hasPasswordAuth: boolean;
7270
- isManaged: boolean;
7271
- dateJoined: string;
7272
- lastLogin: string | null;
7273
- has2fa: boolean;
7274
- lastActive: string | null;
7275
- isSuperuser: boolean;
7276
- isStaff: boolean;
7277
- experiments: {
7278
- [key: string]: unknown;
7279
- };
7280
- emails: Array<{
7281
- id: string;
7282
- email: string;
7283
- is_verified: boolean;
7284
- }>;
7285
- } | null;
7286
- name: string;
7287
- query: string;
7288
- querySort: 'date' | 'new' | 'trends' | 'freq' | 'user' | 'inbox' | 'recommended';
7289
- projects: Array<number>;
7290
- environments: Array<string>;
7291
- timeFilters: {
7292
- start?: string | null;
7293
- end?: string | null;
7294
- period?: string | null;
7295
- utc?: boolean | null;
7296
- };
7297
- lastVisited: string | null;
7298
- dateCreated: string;
7299
- dateUpdated: string;
7300
- starred: boolean;
7301
- stars: number;
7302
- }>;
7303
7238
  export type OrganizationMember = {
7304
7239
  externalUsers?: Array<{
7305
7240
  externalId?: string;
@@ -15051,123 +14986,6 @@ export type UpdateOrganizationForwardingResponses = {
15051
14986
  };
15052
14987
  };
15053
14988
  export type UpdateOrganizationForwardingResponse = UpdateOrganizationForwardingResponses[keyof UpdateOrganizationForwardingResponses];
15054
- export type ListOrganizationIssueViewsData = {
15055
- body?: never;
15056
- path: {
15057
- /**
15058
- * The ID or slug of the organization the resource belongs to.
15059
- */
15060
- organization_id_or_slug: string;
15061
- };
15062
- query?: {
15063
- /**
15064
- * Whether to return issue views created by the current user or other members.
15065
- *
15066
- * * `me`
15067
- * * `others`
15068
- */
15069
- createdBy?: 'me' | 'others';
15070
- /**
15071
- * The fields used to sort issue views, in order of precedence.
15072
- */
15073
- sort?: Array<'popularity' | '-popularity' | 'visited' | '-visited' | 'name' | '-name' | 'created' | '-created'>;
15074
- /**
15075
- * A case-insensitive search against issue view names and queries.
15076
- */
15077
- query?: string;
15078
- /**
15079
- * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
15080
- */
15081
- cursor?: string;
15082
- };
15083
- url: '/api/0/organizations/{organization_id_or_slug}/group-search-views/';
15084
- };
15085
- export type ListOrganizationIssueViewsErrors = {
15086
- /**
15087
- * Bad Request
15088
- */
15089
- 400: unknown;
15090
- /**
15091
- * Unauthorized
15092
- */
15093
- 401: unknown;
15094
- /**
15095
- * Forbidden
15096
- */
15097
- 403: unknown;
15098
- /**
15099
- * Not Found
15100
- */
15101
- 404: unknown;
15102
- };
15103
- export type ListOrganizationIssueViewsResponses = {
15104
- 200: Array<{
15105
- id: string;
15106
- createdBy: {
15107
- identities?: Array<{
15108
- id: string;
15109
- name: string;
15110
- organization: {
15111
- slug: string;
15112
- name: string;
15113
- };
15114
- provider: {
15115
- id: string;
15116
- name: string;
15117
- };
15118
- dateVerified: string;
15119
- dateSynced: string;
15120
- }>;
15121
- avatar?: {
15122
- avatarType?: string;
15123
- avatarUuid?: string | null;
15124
- avatarUrl?: string | null;
15125
- };
15126
- authenticators?: Array<unknown>;
15127
- canReset2fa?: boolean;
15128
- id: string;
15129
- name: string;
15130
- username: string;
15131
- email: string;
15132
- avatarUrl: string;
15133
- isActive: boolean;
15134
- isSuspended: boolean;
15135
- hasPasswordAuth: boolean;
15136
- isManaged: boolean;
15137
- dateJoined: string;
15138
- lastLogin: string | null;
15139
- has2fa: boolean;
15140
- lastActive: string | null;
15141
- isSuperuser: boolean;
15142
- isStaff: boolean;
15143
- experiments: {
15144
- [key: string]: unknown;
15145
- };
15146
- emails: Array<{
15147
- id: string;
15148
- email: string;
15149
- is_verified: boolean;
15150
- }>;
15151
- } | null;
15152
- name: string;
15153
- query: string;
15154
- querySort: 'date' | 'new' | 'trends' | 'freq' | 'user' | 'inbox' | 'recommended';
15155
- projects: Array<number>;
15156
- environments: Array<string>;
15157
- timeFilters: {
15158
- start?: string | null;
15159
- end?: string | null;
15160
- period?: string | null;
15161
- utc?: boolean | null;
15162
- };
15163
- lastVisited: string | null;
15164
- dateCreated: string;
15165
- dateUpdated: string;
15166
- starred: boolean;
15167
- stars: number;
15168
- }>;
15169
- };
15170
- export type ListOrganizationIssueViewsResponse = ListOrganizationIssueViewsResponses[keyof ListOrganizationIssueViewsResponses];
15171
14989
  export type CreateOrganizationIssueViewData = {
15172
14990
  body: {
15173
14991
  /**
@@ -4220,69 +4220,6 @@ export declare const vOrganizationIssueView: v.ObjectSchema<{
4220
4220
  readonly starred: v.BooleanSchema<undefined>;
4221
4221
  readonly stars: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
4222
4222
  }, undefined>;
4223
- export declare const vOrganizationIssueViewList: v.ArraySchema<v.ObjectSchema<{
4224
- readonly id: v.StringSchema<undefined>;
4225
- readonly createdBy: v.UnionSchema<[v.ObjectSchema<{
4226
- readonly identities: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4227
- readonly id: v.StringSchema<undefined>;
4228
- readonly name: v.StringSchema<undefined>;
4229
- readonly organization: v.ObjectSchema<{
4230
- readonly slug: v.StringSchema<undefined>;
4231
- readonly name: v.StringSchema<undefined>;
4232
- }, undefined>;
4233
- readonly provider: v.ObjectSchema<{
4234
- readonly id: v.StringSchema<undefined>;
4235
- readonly name: v.StringSchema<undefined>;
4236
- }, undefined>;
4237
- readonly dateVerified: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
4238
- readonly dateSynced: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
4239
- }, undefined>, undefined>, undefined>;
4240
- readonly avatar: v.OptionalSchema<v.ObjectSchema<{
4241
- readonly avatarType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4242
- readonly avatarUuid: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
4243
- readonly avatarUrl: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
4244
- }, undefined>, undefined>;
4245
- readonly authenticators: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
4246
- readonly canReset2fa: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
4247
- readonly id: v.StringSchema<undefined>;
4248
- readonly name: v.StringSchema<undefined>;
4249
- readonly username: v.StringSchema<undefined>;
4250
- readonly email: v.StringSchema<undefined>;
4251
- readonly avatarUrl: v.StringSchema<undefined>;
4252
- readonly isActive: v.BooleanSchema<undefined>;
4253
- readonly isSuspended: v.BooleanSchema<undefined>;
4254
- readonly hasPasswordAuth: v.BooleanSchema<undefined>;
4255
- readonly isManaged: v.BooleanSchema<undefined>;
4256
- readonly dateJoined: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
4257
- readonly lastLogin: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.NullSchema<undefined>], undefined>;
4258
- readonly has2fa: v.BooleanSchema<undefined>;
4259
- readonly lastActive: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.NullSchema<undefined>], undefined>;
4260
- readonly isSuperuser: v.BooleanSchema<undefined>;
4261
- readonly isStaff: v.BooleanSchema<undefined>;
4262
- readonly experiments: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
4263
- readonly emails: v.ArraySchema<v.ObjectSchema<{
4264
- readonly id: v.StringSchema<undefined>;
4265
- readonly email: v.StringSchema<undefined>;
4266
- readonly is_verified: v.BooleanSchema<undefined>;
4267
- }, undefined>, undefined>;
4268
- }, undefined>, v.NullSchema<undefined>], undefined>;
4269
- readonly name: v.StringSchema<undefined>;
4270
- readonly query: v.StringSchema<undefined>;
4271
- readonly querySort: v.PicklistSchema<["date", "new", "trends", "freq", "user", "inbox", "recommended"], undefined>;
4272
- readonly projects: v.ArraySchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
4273
- readonly environments: v.ArraySchema<v.StringSchema<undefined>, undefined>;
4274
- readonly timeFilters: v.ObjectSchema<{
4275
- readonly start: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
4276
- readonly end: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
4277
- readonly period: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
4278
- readonly utc: v.OptionalSchema<v.UnionSchema<[v.BooleanSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
4279
- }, undefined>;
4280
- readonly lastVisited: v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>;
4281
- readonly dateCreated: v.StringSchema<undefined>;
4282
- readonly dateUpdated: v.StringSchema<undefined>;
4283
- readonly starred: v.BooleanSchema<undefined>;
4284
- readonly stars: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
4285
- }, undefined>, undefined>;
4286
4223
  export declare const vOrganizationMember: v.ObjectSchema<{
4287
4224
  readonly externalUsers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4288
4225
  readonly externalId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -8399,81 +8336,6 @@ export declare const vUpdateOrganizationForwardingResponse: v.ObjectSchema<{
8399
8336
  readonly dateAdded: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
8400
8337
  readonly dateUpdated: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
8401
8338
  }, undefined>;
8402
- export declare const vListOrganizationIssueViewsData: v.ObjectSchema<{
8403
- readonly body: v.OptionalSchema<v.NeverSchema<undefined>, undefined>;
8404
- readonly path: v.ObjectSchema<{
8405
- readonly organization_id_or_slug: v.StringSchema<undefined>;
8406
- }, undefined>;
8407
- readonly query: v.OptionalSchema<v.ObjectSchema<{
8408
- readonly createdBy: v.OptionalSchema<v.PicklistSchema<["me", "others"], undefined>, undefined>;
8409
- readonly sort: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["popularity", "-popularity", "visited", "-visited", "name", "-name", "created", "-created"], undefined>, undefined>, readonly ["-visited"]>;
8410
- readonly query: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
8411
- readonly cursor: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
8412
- }, undefined>, undefined>;
8413
- }, undefined>;
8414
- export declare const vListOrganizationIssueViewsResponse: v.ArraySchema<v.ObjectSchema<{
8415
- readonly id: v.StringSchema<undefined>;
8416
- readonly createdBy: v.UnionSchema<[v.ObjectSchema<{
8417
- readonly identities: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
8418
- readonly id: v.StringSchema<undefined>;
8419
- readonly name: v.StringSchema<undefined>;
8420
- readonly organization: v.ObjectSchema<{
8421
- readonly slug: v.StringSchema<undefined>;
8422
- readonly name: v.StringSchema<undefined>;
8423
- }, undefined>;
8424
- readonly provider: v.ObjectSchema<{
8425
- readonly id: v.StringSchema<undefined>;
8426
- readonly name: v.StringSchema<undefined>;
8427
- }, undefined>;
8428
- readonly dateVerified: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
8429
- readonly dateSynced: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
8430
- }, undefined>, undefined>, undefined>;
8431
- readonly avatar: v.OptionalSchema<v.ObjectSchema<{
8432
- readonly avatarType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8433
- readonly avatarUuid: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
8434
- readonly avatarUrl: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
8435
- }, undefined>, undefined>;
8436
- readonly authenticators: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
8437
- readonly canReset2fa: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
8438
- readonly id: v.StringSchema<undefined>;
8439
- readonly name: v.StringSchema<undefined>;
8440
- readonly username: v.StringSchema<undefined>;
8441
- readonly email: v.StringSchema<undefined>;
8442
- readonly avatarUrl: v.StringSchema<undefined>;
8443
- readonly isActive: v.BooleanSchema<undefined>;
8444
- readonly isSuspended: v.BooleanSchema<undefined>;
8445
- readonly hasPasswordAuth: v.BooleanSchema<undefined>;
8446
- readonly isManaged: v.BooleanSchema<undefined>;
8447
- readonly dateJoined: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
8448
- readonly lastLogin: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.NullSchema<undefined>], undefined>;
8449
- readonly has2fa: v.BooleanSchema<undefined>;
8450
- readonly lastActive: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.NullSchema<undefined>], undefined>;
8451
- readonly isSuperuser: v.BooleanSchema<undefined>;
8452
- readonly isStaff: v.BooleanSchema<undefined>;
8453
- readonly experiments: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
8454
- readonly emails: v.ArraySchema<v.ObjectSchema<{
8455
- readonly id: v.StringSchema<undefined>;
8456
- readonly email: v.StringSchema<undefined>;
8457
- readonly is_verified: v.BooleanSchema<undefined>;
8458
- }, undefined>, undefined>;
8459
- }, undefined>, v.NullSchema<undefined>], undefined>;
8460
- readonly name: v.StringSchema<undefined>;
8461
- readonly query: v.StringSchema<undefined>;
8462
- readonly querySort: v.PicklistSchema<["date", "new", "trends", "freq", "user", "inbox", "recommended"], undefined>;
8463
- readonly projects: v.ArraySchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
8464
- readonly environments: v.ArraySchema<v.StringSchema<undefined>, undefined>;
8465
- readonly timeFilters: v.ObjectSchema<{
8466
- readonly start: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
8467
- readonly end: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
8468
- readonly period: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
8469
- readonly utc: v.OptionalSchema<v.UnionSchema<[v.BooleanSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>;
8470
- }, undefined>;
8471
- readonly lastVisited: v.UnionSchema<[v.StringSchema<undefined>, v.NullSchema<undefined>], undefined>;
8472
- readonly dateCreated: v.StringSchema<undefined>;
8473
- readonly dateUpdated: v.StringSchema<undefined>;
8474
- readonly starred: v.BooleanSchema<undefined>;
8475
- readonly stars: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
8476
- }, undefined>, undefined>;
8477
8339
  export declare const vCreateOrganizationIssueViewData: v.ObjectSchema<{
8478
8340
  readonly body: v.ObjectSchema<{
8479
8341
  readonly name: v.StringSchema<undefined>;
package/dist/valibot.js CHANGED
@@ -5672,77 +5672,6 @@ var vOrganizationIssueView = v.object({
5672
5672
  starred: v.boolean(),
5673
5673
  stars: v.pipe(v.number(), v.integer())
5674
5674
  });
5675
- var vOrganizationIssueViewList = v.array(v.object({
5676
- id: v.string(),
5677
- createdBy: v.union([v.object({
5678
- identities: v.optional(v.array(v.object({
5679
- id: v.string(),
5680
- name: v.string(),
5681
- organization: v.object({
5682
- slug: v.string(),
5683
- name: v.string()
5684
- }),
5685
- provider: v.object({
5686
- id: v.string(),
5687
- name: v.string()
5688
- }),
5689
- dateVerified: v.pipe(v.string(), v.isoTimestamp()),
5690
- dateSynced: v.pipe(v.string(), v.isoTimestamp())
5691
- }))),
5692
- avatar: v.optional(v.object({
5693
- avatarType: v.optional(v.string()),
5694
- avatarUuid: v.optional(v.union([v.string(), v.null()])),
5695
- avatarUrl: v.optional(v.union([v.string(), v.null()]))
5696
- })),
5697
- authenticators: v.optional(v.array(v.unknown())),
5698
- canReset2fa: v.optional(v.boolean()),
5699
- id: v.string(),
5700
- name: v.string(),
5701
- username: v.string(),
5702
- email: v.string(),
5703
- avatarUrl: v.string(),
5704
- isActive: v.boolean(),
5705
- isSuspended: v.boolean(),
5706
- hasPasswordAuth: v.boolean(),
5707
- isManaged: v.boolean(),
5708
- dateJoined: v.pipe(v.string(), v.isoTimestamp()),
5709
- lastLogin: v.union([v.pipe(v.string(), v.isoTimestamp()), v.null()]),
5710
- has2fa: v.boolean(),
5711
- lastActive: v.union([v.pipe(v.string(), v.isoTimestamp()), v.null()]),
5712
- isSuperuser: v.boolean(),
5713
- isStaff: v.boolean(),
5714
- experiments: v.record(v.string(), v.unknown()),
5715
- emails: v.array(v.object({
5716
- id: v.string(),
5717
- email: v.string(),
5718
- is_verified: v.boolean()
5719
- }))
5720
- }), v.null()]),
5721
- name: v.string(),
5722
- query: v.string(),
5723
- querySort: v.picklist([
5724
- "date",
5725
- "new",
5726
- "trends",
5727
- "freq",
5728
- "user",
5729
- "inbox",
5730
- "recommended"
5731
- ]),
5732
- projects: v.array(v.pipe(v.number(), v.integer())),
5733
- environments: v.array(v.string()),
5734
- timeFilters: v.object({
5735
- start: v.optional(v.union([v.string(), v.null()])),
5736
- end: v.optional(v.union([v.string(), v.null()])),
5737
- period: v.optional(v.union([v.string(), v.null()])),
5738
- utc: v.optional(v.union([v.boolean(), v.null()]))
5739
- }),
5740
- lastVisited: v.union([v.string(), v.null()]),
5741
- dateCreated: v.string(),
5742
- dateUpdated: v.string(),
5743
- starred: v.boolean(),
5744
- stars: v.pipe(v.number(), v.integer())
5745
- }));
5746
5675
  var vOrganizationMember = v.object({
5747
5676
  externalUsers: v.optional(v.array(v.object({
5748
5677
  externalId: v.optional(v.string()),
@@ -10185,98 +10114,6 @@ var vUpdateOrganizationForwardingResponse = v.object({
10185
10114
  dateAdded: v.pipe(v.string(), v.isoTimestamp()),
10186
10115
  dateUpdated: v.pipe(v.string(), v.isoTimestamp())
10187
10116
  });
10188
- var vListOrganizationIssueViewsData = v.object({
10189
- body: v.optional(v.never()),
10190
- path: v.object({
10191
- organization_id_or_slug: v.string()
10192
- }),
10193
- query: v.optional(v.object({
10194
- createdBy: v.optional(v.picklist(["me", "others"])),
10195
- sort: v.optional(v.array(v.picklist([
10196
- "popularity",
10197
- "-popularity",
10198
- "visited",
10199
- "-visited",
10200
- "name",
10201
- "-name",
10202
- "created",
10203
- "-created"
10204
- ])), ["-visited"]),
10205
- query: v.optional(v.pipe(v.string(), v.minLength(1))),
10206
- cursor: v.optional(v.pipe(v.string(), v.minLength(1)))
10207
- }))
10208
- });
10209
- var vListOrganizationIssueViewsResponse = v.array(v.object({
10210
- id: v.string(),
10211
- createdBy: v.union([v.object({
10212
- identities: v.optional(v.array(v.object({
10213
- id: v.string(),
10214
- name: v.string(),
10215
- organization: v.object({
10216
- slug: v.string(),
10217
- name: v.string()
10218
- }),
10219
- provider: v.object({
10220
- id: v.string(),
10221
- name: v.string()
10222
- }),
10223
- dateVerified: v.pipe(v.string(), v.isoTimestamp()),
10224
- dateSynced: v.pipe(v.string(), v.isoTimestamp())
10225
- }))),
10226
- avatar: v.optional(v.object({
10227
- avatarType: v.optional(v.string()),
10228
- avatarUuid: v.optional(v.union([v.string(), v.null()])),
10229
- avatarUrl: v.optional(v.union([v.string(), v.null()]))
10230
- })),
10231
- authenticators: v.optional(v.array(v.unknown())),
10232
- canReset2fa: v.optional(v.boolean()),
10233
- id: v.string(),
10234
- name: v.string(),
10235
- username: v.string(),
10236
- email: v.string(),
10237
- avatarUrl: v.string(),
10238
- isActive: v.boolean(),
10239
- isSuspended: v.boolean(),
10240
- hasPasswordAuth: v.boolean(),
10241
- isManaged: v.boolean(),
10242
- dateJoined: v.pipe(v.string(), v.isoTimestamp()),
10243
- lastLogin: v.union([v.pipe(v.string(), v.isoTimestamp()), v.null()]),
10244
- has2fa: v.boolean(),
10245
- lastActive: v.union([v.pipe(v.string(), v.isoTimestamp()), v.null()]),
10246
- isSuperuser: v.boolean(),
10247
- isStaff: v.boolean(),
10248
- experiments: v.record(v.string(), v.unknown()),
10249
- emails: v.array(v.object({
10250
- id: v.string(),
10251
- email: v.string(),
10252
- is_verified: v.boolean()
10253
- }))
10254
- }), v.null()]),
10255
- name: v.string(),
10256
- query: v.string(),
10257
- querySort: v.picklist([
10258
- "date",
10259
- "new",
10260
- "trends",
10261
- "freq",
10262
- "user",
10263
- "inbox",
10264
- "recommended"
10265
- ]),
10266
- projects: v.array(v.pipe(v.number(), v.integer())),
10267
- environments: v.array(v.string()),
10268
- timeFilters: v.object({
10269
- start: v.optional(v.union([v.string(), v.null()])),
10270
- end: v.optional(v.union([v.string(), v.null()])),
10271
- period: v.optional(v.union([v.string(), v.null()])),
10272
- utc: v.optional(v.union([v.boolean(), v.null()]))
10273
- }),
10274
- lastVisited: v.union([v.string(), v.null()]),
10275
- dateCreated: v.string(),
10276
- dateUpdated: v.string(),
10277
- starred: v.boolean(),
10278
- stars: v.pipe(v.number(), v.integer())
10279
- }));
10280
10117
  var vCreateOrganizationIssueViewData = v.object({
10281
10118
  body: v.object({
10282
10119
  name: v.string(),
@@ -22158,7 +21995,6 @@ export {
22158
21995
  vOrganizationMemberRequestWritable,
22159
21996
  vOrganizationMemberRequest,
22160
21997
  vOrganizationMember,
22161
- vOrganizationIssueViewList,
22162
21998
  vOrganizationIssueView,
22163
21999
  vOrganizationIntegrationResponse,
22164
22000
  vOrganizationGroupIndexPutResponse,
@@ -22306,8 +22142,6 @@ export {
22306
22142
  vListOrganizationMemberResponse,
22307
22143
  vListOrganizationIssuesResponse,
22308
22144
  vListOrganizationIssuesData,
22309
- vListOrganizationIssueViewsResponse,
22310
- vListOrganizationIssueViewsData,
22311
22145
  vListOrganizationIssueTagValuesResponse,
22312
22146
  vListOrganizationIssueTagValuesData,
22313
22147
  vListOrganizationIssueHashesResponse,