@devrev/typescript-sdk 1.1.73 → 1.1.74

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.
@@ -3382,6 +3382,14 @@ export interface BrandsUpdateResponse {
3382
3382
  export type Capability = PartBase;
3383
3383
  /** capability-summary */
3384
3384
  export type CapabilitySummary = PartBaseSummary;
3385
+ /**
3386
+ * card-view-ui-metadata
3387
+ * Card view UI hint overrides.
3388
+ */
3389
+ export interface CardViewUiMetadata {
3390
+ /** True if field is visible in card view. */
3391
+ is_visible?: boolean;
3392
+ }
3385
3393
  /** The operator used to compare the key and the value. */
3386
3394
  export declare enum CaveatOperator {
3387
3395
  Eq = "eq",
@@ -11416,6 +11424,13 @@ export declare enum ErrorBadRequestUnexpectedJsonTypeType {
11416
11424
  }
11417
11425
  /** error-bad-request-value-not-permitted */
11418
11426
  export interface ErrorBadRequestValueNotPermitted {
11427
+ /**
11428
+ * The actual value that was provided.
11429
+ * @format text
11430
+ */
11431
+ actual_value?: string;
11432
+ /** The allowed object types for ID fields. */
11433
+ allowed_object_types?: string[];
11419
11434
  /** The allowed values for the field. */
11420
11435
  allowed_values?: string[];
11421
11436
  /**
@@ -11423,6 +11438,16 @@ export interface ErrorBadRequestValueNotPermitted {
11423
11438
  * @format text
11424
11439
  */
11425
11440
  field_name: string;
11441
+ /**
11442
+ * The maximum allowed value or length.
11443
+ * @format text
11444
+ */
11445
+ max_value?: string;
11446
+ /**
11447
+ * The minimum allowed value or length.
11448
+ * @format text
11449
+ */
11450
+ min_value?: string;
11426
11451
  /**
11427
11452
  * The pattern the value must match.
11428
11453
  * @format text
@@ -20268,6 +20293,11 @@ export interface SchemaFieldDescriptorBase {
20268
20293
  * @format text
20269
20294
  */
20270
20295
  description?: string;
20296
+ /**
20297
+ * Whether this field is derived (computed by the system and not
20298
+ * settable by users).
20299
+ */
20300
+ is_derived?: boolean;
20271
20301
  /** Whether this field is filterable, groupable and sortable. */
20272
20302
  is_filterable?: boolean;
20273
20303
  /** Whether this field is immutable or not. */
@@ -20389,6 +20419,8 @@ export interface SchemaFieldUenumValue {
20389
20419
  * The schema of ui specific fields.
20390
20420
  */
20391
20421
  export interface SchemaFieldUiMetadata {
20422
+ /** Card view UI hint overrides. */
20423
+ card_view?: CardViewUiMetadata;
20392
20424
  /** The client overrides for the field. */
20393
20425
  client_overrides?: ClientOverride[];
20394
20426
  /** Create view UI hint overrides. */
@@ -2608,6 +2608,14 @@ export declare enum BooleanExpressionType {
2608
2608
  export type Capability = PartBase;
2609
2609
  /** capability-summary */
2610
2610
  export type CapabilitySummary = PartBaseSummary;
2611
+ /**
2612
+ * card-view-ui-metadata
2613
+ * Card view UI hint overrides.
2614
+ */
2615
+ export interface CardViewUiMetadata {
2616
+ /** True if field is visible in card view. */
2617
+ is_visible?: boolean;
2618
+ }
2611
2619
  /** chat */
2612
2620
  export type Chat = Dm & {
2613
2621
  type: ChatType;
@@ -7492,6 +7500,13 @@ export declare enum ErrorBadRequestUnexpectedJsonTypeType {
7492
7500
  }
7493
7501
  /** error-bad-request-value-not-permitted */
7494
7502
  export interface ErrorBadRequestValueNotPermitted {
7503
+ /**
7504
+ * The actual value that was provided.
7505
+ * @format text
7506
+ */
7507
+ actual_value?: string;
7508
+ /** The allowed object types for ID fields. */
7509
+ allowed_object_types?: string[];
7495
7510
  /** The allowed values for the field. */
7496
7511
  allowed_values?: string[];
7497
7512
  /**
@@ -7499,6 +7514,16 @@ export interface ErrorBadRequestValueNotPermitted {
7499
7514
  * @format text
7500
7515
  */
7501
7516
  field_name: string;
7517
+ /**
7518
+ * The maximum allowed value or length.
7519
+ * @format text
7520
+ */
7521
+ max_value?: string;
7522
+ /**
7523
+ * The minimum allowed value or length.
7524
+ * @format text
7525
+ */
7526
+ min_value?: string;
7502
7527
  /**
7503
7528
  * The pattern the value must match.
7504
7529
  * @format text
@@ -14348,6 +14373,11 @@ export interface SchemaFieldDescriptorBase {
14348
14373
  * @format text
14349
14374
  */
14350
14375
  description?: string;
14376
+ /**
14377
+ * Whether this field is derived (computed by the system and not
14378
+ * settable by users).
14379
+ */
14380
+ is_derived?: boolean;
14351
14381
  /** Whether this field is filterable, groupable and sortable. */
14352
14382
  is_filterable?: boolean;
14353
14383
  /** Whether this field is immutable or not. */
@@ -14469,6 +14499,8 @@ export interface SchemaFieldUenumValue {
14469
14499
  * The schema of ui specific fields.
14470
14500
  */
14471
14501
  export interface SchemaFieldUiMetadata {
14502
+ /** Card view UI hint overrides. */
14503
+ card_view?: CardViewUiMetadata;
14472
14504
  /** The client overrides for the field. */
14473
14505
  client_overrides?: ClientOverride[];
14474
14506
  /** Create view UI hint overrides. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devrev/typescript-sdk",
3
- "version": "1.1.73",
3
+ "version": "1.1.74",
4
4
  "description": "## SDK Generation",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {