lucid-extension-sdk 0.0.441 → 0.0.443

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.
Files changed (104) hide show
  1. package/commandtypes.d.ts +9 -2
  2. package/core/cardintegration/cardfielddisplaysettings.d.ts +708 -81
  3. package/core/cardintegration/cardfielddisplaysettings.js +98 -98
  4. package/core/cardintegration/cardintegrationconfig.d.ts +657 -77
  5. package/core/cardintegration/cardintegrationconfig.js +56 -55
  6. package/core/cardintegration/cardintegrationparams.d.ts +0 -7
  7. package/core/cardintegration/cardpaneltabs/tab.d.ts +53 -0
  8. package/core/cardintegration/cardpaneltabs/tab.js +30 -0
  9. package/core/cardintegration/cardpaneltabs/tabs/listtab.d.ts +60 -0
  10. package/core/cardintegration/cardpaneltabs/tabs/listtab.js +36 -0
  11. package/core/cardintegration/cardpaneltabs/tabs.d.ts +68 -0
  12. package/core/cardintegration/cardpaneltabs/tabs.js +62 -0
  13. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitem.d.ts +91 -0
  14. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitem.js +63 -0
  15. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemtag.d.ts +16 -0
  16. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemtag.js +32 -0
  17. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemtexttag.d.ts +35 -0
  18. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemtexttag.js +27 -0
  19. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemtexttagcolor.d.ts +14 -0
  20. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemtexttagcolor.js +18 -0
  21. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemusertag.d.ts +35 -0
  22. package/core/cardintegration/extensiondatapanel/extensiondatapanellistitemusertag.js +27 -0
  23. package/core/cardintegration/lucidcardintegration.d.ts +6 -0
  24. package/core/cardintegration/lucidcardintegrationregistry.js +26 -2
  25. package/core/cardintegration/useritemeditpermissions.d.ts +2 -2
  26. package/core/cardintegration/useritemeditpermissions.js +1 -1
  27. package/core/data/utils/getcollectionenumfieldcollection.d.ts +12 -0
  28. package/core/data/utils/getcollectionenumfieldcollection.js +67 -0
  29. package/core/data/utils/getcollectionenumfielditems.d.ts +19 -0
  30. package/core/data/utils/getcollectionenumfielditems.js +86 -0
  31. package/core/enum.d.ts +26 -0
  32. package/core/enum.js +46 -0
  33. package/core/format/arrayformat.d.ts +4 -0
  34. package/core/format/arrayformat.js +22 -0
  35. package/core/format/bigdecimalformat.d.ts +2 -0
  36. package/core/format/bigdecimalformat.js +10 -0
  37. package/core/format/dateformat.d.ts +2 -0
  38. package/core/format/dateformat.js +7 -0
  39. package/core/format/enumformat.d.ts +16 -0
  40. package/core/format/enumformat.js +41 -0
  41. package/core/format/format.d.ts +28 -0
  42. package/core/format/format.js +60 -0
  43. package/core/format/instantformat.d.ts +2 -0
  44. package/core/format/instantformat.js +10 -0
  45. package/core/format/jsonformat.d.ts +12 -0
  46. package/core/format/jsonformat.js +2 -0
  47. package/core/format/mapformat.d.ts +3 -0
  48. package/core/format/mapformat.js +34 -0
  49. package/core/format/maybestringifiedjsvalue.d.ts +2 -0
  50. package/core/format/maybestringifiedjsvalue.js +22 -0
  51. package/core/format/objectformat.d.ts +45 -0
  52. package/core/format/objectformat.js +98 -0
  53. package/core/format/opaqueformat.d.ts +3 -0
  54. package/core/format/opaqueformat.js +9 -0
  55. package/core/format/pointformat.d.ts +5 -0
  56. package/core/format/pointformat.js +25 -0
  57. package/core/format/primitiveformat.d.ts +57 -0
  58. package/core/format/primitiveformat.js +82 -0
  59. package/core/format/recordformat.d.ts +3 -0
  60. package/core/format/recordformat.js +40 -0
  61. package/core/format/serializablemap.d.ts +6 -0
  62. package/core/format/serializablemap.js +12 -0
  63. package/core/format/simpleformat.d.ts +15 -0
  64. package/core/format/simpleformat.js +33 -0
  65. package/core/identity.d.ts +11 -0
  66. package/core/identity.js +20 -0
  67. package/core/iterable.d.ts +22 -0
  68. package/core/iterable.js +63 -0
  69. package/core/map.d.ts +22 -0
  70. package/core/map.js +51 -0
  71. package/core/maybepartialrecord.d.ts +12 -0
  72. package/core/maybepartialrecord.js +2 -0
  73. package/core/mutable.d.ts +26 -0
  74. package/core/mutable.js +2 -0
  75. package/core/opaque.d.ts +24 -0
  76. package/core/opaque.js +17 -0
  77. package/core/partialandundefined.d.ts +6 -0
  78. package/core/partialandundefined.js +2 -0
  79. package/core/prettify.d.ts +6 -0
  80. package/core/prettify.js +2 -0
  81. package/core/primitivedata.d.ts +39 -0
  82. package/core/primitivedata.js +120 -0
  83. package/core/properties/datagraphic/datagraphicindexes.d.ts +1 -1
  84. package/core/publicinterface.d.ts +12 -0
  85. package/core/publicinterface.js +2 -0
  86. package/core/sharedcardintegration/cardintegrationdefinitions.d.ts +93 -15
  87. package/core/sharedcardintegration/cardintegrationdefinitions.js +37 -14
  88. package/data/patcherrortype.d.ts +7 -0
  89. package/data/patcherrortype.js +11 -0
  90. package/dataconnector/actions/patchresponsebody.d.ts +10 -5
  91. package/dataconnector/actions/patchresponsebody.js +9 -8
  92. package/dataconnector/datasourceclient.d.ts +14 -2
  93. package/dataconnector/datasourceclient.js +14 -2
  94. package/document/documentelement/documentelementtype.d.ts +2 -1
  95. package/document/documentelement/documentelementtype.js +1 -0
  96. package/document/text/textstyle.d.ts +32 -9
  97. package/document/text/textstyle.js +44 -10
  98. package/editorclient.d.ts +6 -0
  99. package/index.d.ts +6 -0
  100. package/index.js +6 -0
  101. package/math.d.ts +10 -1
  102. package/math.js +8 -1
  103. package/object.d.ts +15 -0
  104. package/package.json +5 -2
package/commandtypes.d.ts CHANGED
@@ -5,6 +5,7 @@ import { SerializedFieldType } from './core/data/serializedfield/serializedfield
5
5
  import { JsonObject, UnsafeJsonSerializableOrUndefined } from './core/jsonserializable';
6
6
  import { LucidProduct } from './core/lucidproduct';
7
7
  import { LinearOffsetType } from './core/offsettype';
8
+ import { PartialAndNullish } from './core/partialandundefined';
8
9
  import { SerializedDataError } from './core/serializeddataerror';
9
10
  import { ShapeDataInheritance } from './core/shapedatainheritance';
10
11
  import { DocumentAccessPermission } from './document/documentaccesspermission';
@@ -784,6 +785,10 @@ export type SerializedFieldConfiguration = {
784
785
  'cfds'?: SerializedCustomFieldDisplaySettings;
785
786
  /** Non-customizable fields */
786
787
  'ncf'?: string[] | undefined;
788
+ /** Callback to get fields to edit related to a field passed as an argument */
789
+ 'gfte'?: string | undefined;
790
+ /** Callback to get list items for a card's field passed as an argument */
791
+ 'gliff'?: string | undefined;
787
792
  };
788
793
  export type AddCardIntegrationQuery = {
789
794
  /** Title/name */
@@ -799,7 +804,7 @@ export type AddCardIntegrationQuery = {
799
804
  /** Icon url. Replaced by iconConfiguration.primaryIconUrl */
800
805
  'u': string;
801
806
  /** Text style */
802
- 'ts'?: Partial<TextStyle> | undefined;
807
+ 'ts'?: PartialAndNullish<TextStyle> | undefined;
803
808
  /** Field configuration */
804
809
  'fc': SerializedFieldConfiguration;
805
810
  /** Import from serialized fields callback */
@@ -933,6 +938,8 @@ export type AddCardIntegrationQuery = {
933
938
  * Whether the user can edit an item in the data source.
934
939
  */
935
940
  'cei'?: string | undefined;
941
+ /** getAdditionalPanelTabsForCard -- Cards' additional details via tabs in panel */
942
+ 'gaptfc'?: string | undefined;
936
943
  };
937
944
  export type AddCardIntegrationResult = undefined;
938
945
  /** @ignore */
@@ -1941,7 +1948,7 @@ export type SetTextStyleQuery = {
1941
1948
  /** Name of the text area to set text style on */
1942
1949
  'n': string;
1943
1950
  /** Text styles to set */
1944
- 's': Partial<TextStyle>;
1951
+ 's': PartialAndNullish<TextStyle>;
1945
1952
  };
1946
1953
  export type SetTextStyleResult = Promise<undefined>;
1947
1954
  export type ShowModalQuery = {