@objectstack/platform-objects 7.1.0 → 7.2.1

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.
@@ -222,6 +222,13 @@ declare const SysWebhook: Omit<{
222
222
  caseSensitive?: boolean | undefined;
223
223
  autonumberFormat?: string | undefined;
224
224
  }>;
225
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
226
+ _lockReason?: string | undefined;
227
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
228
+ _provenance?: "package" | "env-forced" | "org" | undefined;
229
+ _packageId?: string | undefined;
230
+ _packageVersion?: string | undefined;
231
+ _lockDocsUrl?: string | undefined;
225
232
  label?: string | undefined;
226
233
  pluralLabel?: string | undefined;
227
234
  description?: string | undefined;
@@ -367,7 +374,7 @@ declare const SysWebhook: Omit<{
367
374
  wrap?: boolean | undefined;
368
375
  type?: string | undefined;
369
376
  pinned?: "left" | "right" | undefined;
370
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
377
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
371
378
  link?: boolean | undefined;
372
379
  action?: string | undefined;
373
380
  }[];
@@ -416,7 +423,7 @@ declare const SysWebhook: Omit<{
416
423
  bordered?: boolean | undefined;
417
424
  compactToolbar?: boolean | undefined;
418
425
  selection?: {
419
- type: "multiple" | "single" | "none";
426
+ type: "none" | "multiple" | "single";
420
427
  } | undefined;
421
428
  navigation?: {
422
429
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -611,7 +618,7 @@ declare const SysWebhook: Omit<{
611
618
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
612
619
  } | undefined;
613
620
  recordTypes?: string[] | undefined;
614
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
621
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
615
622
  publicSharing?: {
616
623
  enabled: boolean;
617
624
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -714,6 +721,11 @@ declare const SysWebhook: Omit<{
714
721
  role?: string | undefined;
715
722
  } | undefined;
716
723
  }[] | undefined;
724
+ protection?: {
725
+ lock: "full" | "none" | "no-overlay" | "no-delete";
726
+ reason: string;
727
+ docsUrl?: string | undefined;
728
+ } | undefined;
717
729
  }, "fields"> & Pick<{
718
730
  readonly name: "sys_webhook";
719
731
  readonly label: "Webhook";
@@ -222,6 +222,13 @@ declare const SysWebhook: Omit<{
222
222
  caseSensitive?: boolean | undefined;
223
223
  autonumberFormat?: string | undefined;
224
224
  }>;
225
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
226
+ _lockReason?: string | undefined;
227
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
228
+ _provenance?: "package" | "env-forced" | "org" | undefined;
229
+ _packageId?: string | undefined;
230
+ _packageVersion?: string | undefined;
231
+ _lockDocsUrl?: string | undefined;
225
232
  label?: string | undefined;
226
233
  pluralLabel?: string | undefined;
227
234
  description?: string | undefined;
@@ -367,7 +374,7 @@ declare const SysWebhook: Omit<{
367
374
  wrap?: boolean | undefined;
368
375
  type?: string | undefined;
369
376
  pinned?: "left" | "right" | undefined;
370
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
377
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
371
378
  link?: boolean | undefined;
372
379
  action?: string | undefined;
373
380
  }[];
@@ -416,7 +423,7 @@ declare const SysWebhook: Omit<{
416
423
  bordered?: boolean | undefined;
417
424
  compactToolbar?: boolean | undefined;
418
425
  selection?: {
419
- type: "multiple" | "single" | "none";
426
+ type: "none" | "multiple" | "single";
420
427
  } | undefined;
421
428
  navigation?: {
422
429
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -611,7 +618,7 @@ declare const SysWebhook: Omit<{
611
618
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
612
619
  } | undefined;
613
620
  recordTypes?: string[] | undefined;
614
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
621
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
615
622
  publicSharing?: {
616
623
  enabled: boolean;
617
624
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -714,6 +721,11 @@ declare const SysWebhook: Omit<{
714
721
  role?: string | undefined;
715
722
  } | undefined;
716
723
  }[] | undefined;
724
+ protection?: {
725
+ lock: "full" | "none" | "no-overlay" | "no-delete";
726
+ reason: string;
727
+ docsUrl?: string | undefined;
728
+ } | undefined;
717
729
  }, "fields"> & Pick<{
718
730
  readonly name: "sys_webhook";
719
731
  readonly label: "Webhook";