@gooddata/sdk-model 10.17.0-alpha.2 → 10.17.0-alpha.21

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.
@@ -38,6 +38,13 @@ export declare type AccessGranteeDetail = IUserAccess | IUserGroupAccess | IGran
38
38
  */
39
39
  export declare type AccessGranularPermission = "VIEW" | "EDIT" | "SHARE";
40
40
 
41
+ /**
42
+ * Alert description status.
43
+ *
44
+ * @alpha
45
+ */
46
+ export declare type AlertDescriptionStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
47
+
41
48
  /**
42
49
  * Special granularity used to indicate there should be no date filtering for the given dimension.
43
50
  *
@@ -486,6 +493,13 @@ export declare function attributeShowAllValues(attribute: IAttribute): boolean |
486
493
  */
487
494
  export declare function attributeUri(attribute: IAttribute): string | undefined;
488
495
 
496
+ /**
497
+ * Automation notification type.
498
+ *
499
+ * @alpha
500
+ */
501
+ export declare type AutomationNotificationType = "automation-task.completed" | "automation-task.limit-exceeded";
502
+
489
503
  /**
490
504
  * Gets first attribute matching the provided predicate from the bucket.
491
505
  *
@@ -1779,6 +1793,139 @@ export declare interface IAlertDefault {
1779
1793
  defaultTimezone: string;
1780
1794
  }
1781
1795
 
1796
+ /**
1797
+ * Alert description.
1798
+ *
1799
+ * @alpha
1800
+ */
1801
+ export declare interface IAlertDescription {
1802
+ /**
1803
+ * Title of the metric.
1804
+ */
1805
+ metric: string;
1806
+ /**
1807
+ * Condition of the alert (in human readable form).
1808
+ */
1809
+ condition: string;
1810
+ /**
1811
+ * Current values that triggered the alert (if sliced by attribute).
1812
+ */
1813
+ currentValues?: IAlertEvaluationRow[];
1814
+ /**
1815
+ * Attribute of the alert (if sliced by attribute).
1816
+ */
1817
+ attribute?: string;
1818
+ /**
1819
+ * Filter count of the alert.
1820
+ */
1821
+ filterCount?: number;
1822
+ /**
1823
+ * Total values count that can trigger the alert.
1824
+ */
1825
+ totalValueCount?: number;
1826
+ /**
1827
+ * Count of values that triggered the alert.
1828
+ */
1829
+ triggeredCount?: number;
1830
+ /**
1831
+ * Threshold set to trigger the alert.
1832
+ */
1833
+ threshold?: number;
1834
+ /**
1835
+ * Threshold set to trigger the alert - formatted.
1836
+ */
1837
+ formattedThreshold?: string;
1838
+ /**
1839
+ * Lower threshold of the alert.
1840
+ */
1841
+ lowerThreshold?: number;
1842
+ /**
1843
+ * Upper threshold of the alert.
1844
+ */
1845
+ upperThreshold?: number;
1846
+ /**
1847
+ * Result of the execution that evaluated the alert.
1848
+ */
1849
+ status?: AlertDescriptionStatus;
1850
+ /**
1851
+ * Error message of the alert.
1852
+ */
1853
+ errorMessage?: string;
1854
+ /**
1855
+ * Trace ID of the alert.
1856
+ */
1857
+ traceId?: string;
1858
+ }
1859
+
1860
+ /**
1861
+ * Alert evaluation row.
1862
+ *
1863
+ * @alpha
1864
+ */
1865
+ export declare interface IAlertEvaluationRow {
1866
+ /**
1867
+ * Primary metric value.
1868
+ */
1869
+ primaryMetric?: IAlertEvaluationRowMetric;
1870
+ /**
1871
+ * Secondary metric value.
1872
+ */
1873
+ secondaryMetric?: IAlertEvaluationRowMetric;
1874
+ /**
1875
+ * Computed metric value.
1876
+ */
1877
+ computedMetric?: IAlertEvaluationRowMetric;
1878
+ /**
1879
+ * Label element value (if sliced by attribute).
1880
+ */
1881
+ labelValue?: string;
1882
+ }
1883
+
1884
+ /**
1885
+ * Metric value.
1886
+ *
1887
+ * @alpha
1888
+ */
1889
+ export declare interface IAlertEvaluationRowMetric {
1890
+ /**
1891
+ * Metric value.
1892
+ */
1893
+ value: number;
1894
+ /**
1895
+ * Metric value - formatted.
1896
+ */
1897
+ formattedValue?: string;
1898
+ }
1899
+
1900
+ /**
1901
+ * Notification with details about the alert that triggered it.
1902
+ *
1903
+ * @alpha
1904
+ */
1905
+ export declare interface IAlertNotification extends INotificationBase {
1906
+ notificationType: "alertNotification";
1907
+ /**
1908
+ * Identifier of the automation (alert / schedule) if the notification was created in an automation context.
1909
+ */
1910
+ automationId?: string;
1911
+ /**
1912
+ * Details of the automation that triggered the notification.
1913
+ */
1914
+ details: IAlertNotificationDetails;
1915
+ }
1916
+
1917
+ /**
1918
+ * Details of the alert notification.
1919
+ *
1920
+ * @alpha
1921
+ */
1922
+ export declare interface IAlertNotificationDetails extends IAutomationNotificationDetailsBase {
1923
+ /**
1924
+ * Data from the webhook message.
1925
+ */
1926
+ data: IWebhookMessageDataAlert;
1927
+ }
1928
+
1782
1929
  /**
1783
1930
  * @alpha
1784
1931
  */
@@ -2430,6 +2577,20 @@ export declare interface IAutomationAlertTrigger {
2430
2577
  state: IAlertTriggerState;
2431
2578
  }
2432
2579
 
2580
+ /**
2581
+ * @alpha
2582
+ */
2583
+ export declare interface IAutomationDetails {
2584
+ /**
2585
+ * Subject of the email.
2586
+ */
2587
+ subject?: string;
2588
+ /**
2589
+ * Message of the email.
2590
+ */
2591
+ message?: string;
2592
+ }
2593
+
2433
2594
  /**
2434
2595
  * @alpha
2435
2596
  */
@@ -2461,22 +2622,12 @@ export declare interface IAutomationMetadataObjectBase {
2461
2622
  exportDefinitions?: IExportDefinitionMetadataObject[];
2462
2623
  /**
2463
2624
  * Recipients of the automation.
2464
- * Array of strings with user ids.
2465
2625
  */
2466
2626
  recipients?: IAutomationRecipient[];
2467
2627
  /**
2468
2628
  * Details of the automation.
2469
2629
  */
2470
- details?: {
2471
- /**
2472
- * Subject of the email.
2473
- */
2474
- subject?: string;
2475
- /**
2476
- * Message of the email.
2477
- */
2478
- message?: string;
2479
- };
2630
+ details?: IAutomationDetails;
2480
2631
  /**
2481
2632
  * Dashboard that automation is related to.
2482
2633
  */
@@ -2498,6 +2649,22 @@ export declare interface IAutomationMetadataObjectDefinition extends Omit<IAutom
2498
2649
  exportDefinitions?: (IExportDefinitionMetadataObjectDefinition | IExportDefinitionMetadataObject)[];
2499
2650
  }
2500
2651
 
2652
+ /**
2653
+ * Notification with details about the automation or test that triggered it.
2654
+ *
2655
+ * @alpha
2656
+ */
2657
+ export declare interface IAutomationNotificationDetailsBase {
2658
+ /**
2659
+ * Timestamp when the notification was created.
2660
+ */
2661
+ timestamp: string;
2662
+ /**
2663
+ * Type of the notification.
2664
+ */
2665
+ webhookMessageType: AutomationNotificationType;
2666
+ }
2667
+
2501
2668
  /**
2502
2669
  * @alpha
2503
2670
  */
@@ -3428,6 +3595,21 @@ export declare interface IDashboardLayout<TWidget = IDashboardWidget> {
3428
3595
  * Layout size.
3429
3596
  */
3430
3597
  size?: IDashboardLayoutSize;
3598
+ /**
3599
+ * Layout configuration.
3600
+ *
3601
+ * @alpha
3602
+ */
3603
+ configuration?: IDashboardLayoutConfiguration;
3604
+ }
3605
+
3606
+ /**
3607
+ * Layout configuration.
3608
+ *
3609
+ * @alpha
3610
+ */
3611
+ export declare interface IDashboardLayoutConfiguration {
3612
+ sections?: IDashboardLayoutSectionsConfiguration;
3431
3613
  }
3432
3614
 
3433
3615
  /**
@@ -3486,6 +3668,15 @@ export declare interface IDashboardLayoutSectionHeader {
3486
3668
  description?: string;
3487
3669
  }
3488
3670
 
3671
+ /**
3672
+ * Configuration that affects all sections of the layout.
3673
+ *
3674
+ * @alpha
3675
+ */
3676
+ export declare interface IDashboardLayoutSectionsConfiguration {
3677
+ enableHeader: boolean;
3678
+ }
3679
+
3489
3680
  /**
3490
3681
  * Dashboard layout size definition.
3491
3682
  *
@@ -4509,6 +4700,45 @@ export declare interface IExportOptions {
4509
4700
  mergeHeaders?: boolean;
4510
4701
  }
4511
4702
 
4703
+ /**
4704
+ * Export result.
4705
+ *
4706
+ * @alpha
4707
+ */
4708
+ export declare interface IExportResult {
4709
+ /**
4710
+ * File name.
4711
+ */
4712
+ fileName: string;
4713
+ /**
4714
+ * Export ID.
4715
+ */
4716
+ exportId: string;
4717
+ /**
4718
+ * Export status.
4719
+ */
4720
+ status: IExportResultStatus;
4721
+ /**
4722
+ * File URI.
4723
+ */
4724
+ fileUri?: string;
4725
+ /**
4726
+ * Error message.
4727
+ */
4728
+ errorMessage?: string;
4729
+ /**
4730
+ * Trace ID.
4731
+ */
4732
+ traceId?: string;
4733
+ }
4734
+
4735
+ /**
4736
+ * Export result status.
4737
+ *
4738
+ * @alpha
4739
+ */
4740
+ export declare type IExportResultStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
4741
+
4512
4742
  /**
4513
4743
  * Fact metadata object
4514
4744
  *
@@ -4643,6 +4873,10 @@ export declare interface IGenAIChatInteraction {
4643
4873
  * User feedback for the assistant reply.
4644
4874
  */
4645
4875
  userFeedback?: GenAIChatInteractionUserFeedback;
4876
+ /**
4877
+ * An error message in case the interaction failed.
4878
+ */
4879
+ errorResponse?: string;
4646
4880
  }
4647
4881
 
4648
4882
  /**
@@ -5270,6 +5504,10 @@ export declare interface ILlmEndpointBase {
5270
5504
  * Endpoint description
5271
5505
  */
5272
5506
  description?: string;
5507
+ /**
5508
+ * A list of workspace identifier this endpoint should be used for
5509
+ */
5510
+ workspaceIds: string[];
5273
5511
  }
5274
5512
 
5275
5513
  /**
@@ -5765,6 +6003,45 @@ export declare class InlineMeasureBuilder extends MeasureBuilderBase<IInlineMeas
5765
6003
  */
5766
6004
  export declare type InlineMeasureBuilderInput = string | IMeasure<IInlineMeasureDefinition>;
5767
6005
 
6006
+ /**
6007
+ * Notification.
6008
+ *
6009
+ * @alpha
6010
+ */
6011
+ export declare type INotification = IAlertNotification | IScheduleNotification | ITestNotification;
6012
+
6013
+ /**
6014
+ * Notification with details about the automation or test that triggered it.
6015
+ *
6016
+ * @alpha
6017
+ */
6018
+ export declare interface INotificationBase {
6019
+ /**
6020
+ * Type of the object for type narrowing.
6021
+ */
6022
+ type: "notification";
6023
+ /**
6024
+ * Type of the notification.
6025
+ */
6026
+ notificationType: NotificationType;
6027
+ /**
6028
+ * Unique identifier of the notification.
6029
+ */
6030
+ id: string;
6031
+ /**
6032
+ * Identifier of the workspace if the notification was created in a workspace context.
6033
+ */
6034
+ workspaceId?: string;
6035
+ /**
6036
+ * Indicates whether the notification has been read.
6037
+ */
6038
+ isRead: boolean;
6039
+ /**
6040
+ * Timestamp when the notification was created.
6041
+ */
6042
+ createdAt: string;
6043
+ }
6044
+
5768
6045
  /**
5769
6046
  * @beta
5770
6047
  */
@@ -7155,6 +7432,36 @@ export declare interface IScheduledMailBase {
7155
7432
  export declare interface IScheduledMailDefinition extends IScheduledMailBase, Partial<IDashboardObjectIdentity> {
7156
7433
  }
7157
7434
 
7435
+ /**
7436
+ /**
7437
+ * Notification with details about the schedule that triggered it.
7438
+ *
7439
+ * @alpha
7440
+ */
7441
+ export declare interface IScheduleNotification extends INotificationBase {
7442
+ notificationType: "scheduleNotification";
7443
+ /**
7444
+ * Identifier of the automation (alert / schedule) if the notification was created in an automation context.
7445
+ */
7446
+ automationId?: string;
7447
+ /**
7448
+ * Details of the automation that triggered the notification.
7449
+ */
7450
+ details: IScheduleNotificationDetails;
7451
+ }
7452
+
7453
+ /**
7454
+ * Details of the schedule notification.
7455
+ *
7456
+ * @alpha
7457
+ */
7458
+ export declare interface IScheduleNotificationDetails extends IAutomationNotificationDetailsBase {
7459
+ /**
7460
+ * Data from the webhook message.
7461
+ */
7462
+ data: IWebhookMessageDataSchedule;
7463
+ }
7464
+
7158
7465
  /**
7159
7466
  * Type-guard testing whether the provided object is an instance of {@link IColorDescriptor}.
7160
7467
  *
@@ -8664,6 +8971,31 @@ export declare interface ITempFilterContext {
8664
8971
  readonly uri: string;
8665
8972
  }
8666
8973
 
8974
+ /**
8975
+ * Notification with details about the test that triggered it.
8976
+ *
8977
+ * @alpha
8978
+ */
8979
+ export declare interface ITestNotification extends INotificationBase {
8980
+ notificationType: "testNotification";
8981
+ /**
8982
+ * Details of the test that triggered the notification.
8983
+ */
8984
+ details: ITestNotificationDetails;
8985
+ }
8986
+
8987
+ /**
8988
+ * Notification with details about the automation or test that triggered it.
8989
+ *
8990
+ * @alpha
8991
+ */
8992
+ export declare interface ITestNotificationDetails {
8993
+ /**
8994
+ * Message of the test notification.
8995
+ */
8996
+ message: string;
8997
+ }
8998
+
8667
8999
  /**
8668
9000
  * Theme used to customize selected parts of the UI
8669
9001
  *
@@ -9720,6 +10052,26 @@ export declare interface IVisualizationSwitcherWidgetBase extends IAnalyticalWid
9720
10052
  export declare interface IVisualizationSwitcherWidgetDefinition extends IVisualizationSwitcherWidgetBase, Partial<IDashboardObjectIdentity> {
9721
10053
  }
9722
10054
 
10055
+ /**
10056
+ * Automation information.
10057
+ *
10058
+ * @alpha
10059
+ */
10060
+ export declare interface IWebhookAutomationInfo {
10061
+ /**
10062
+ * Identifier of the automation.
10063
+ */
10064
+ id: string;
10065
+ /**
10066
+ * Title of the automation.
10067
+ */
10068
+ title?: string;
10069
+ /**
10070
+ * URL of the dashboard, or custom dashboard URL (if configured on automation).
10071
+ */
10072
+ dashboardURL: string;
10073
+ }
10074
+
9723
10075
  /**
9724
10076
  * @beta
9725
10077
  */
@@ -9738,6 +10090,57 @@ export declare interface IWebhookDestinationConfiguration {
9738
10090
  hasToken?: boolean;
9739
10091
  }
9740
10092
 
10093
+ /**
10094
+ * Data from the webhook message.
10095
+ *
10096
+ * @alpha
10097
+ */
10098
+ export declare interface IWebhookMessageDataAlert extends IWebhookMessageDataBase {
10099
+ /**
10100
+ * Alert description.
10101
+ */
10102
+ alert: IAlertDescription;
10103
+ }
10104
+
10105
+ /**
10106
+ * Data from the webhook message.
10107
+ *
10108
+ * @alpha
10109
+ */
10110
+ export declare interface IWebhookMessageDataBase {
10111
+ /**
10112
+ * Automation information.
10113
+ */
10114
+ automation: IWebhookAutomationInfo;
10115
+ /**
10116
+ * Recipients of the webhook message.
10117
+ */
10118
+ recipients?: WebhookRecipient[];
10119
+ /**
10120
+ * Automation details.
10121
+ */
10122
+ details?: IAutomationDetails;
10123
+ /**
10124
+ * Remaining export/alert evaluation count
10125
+ */
10126
+ remainingActionCount?: number;
10127
+ /**
10128
+ * Tabular export results
10129
+ */
10130
+ tabularExports?: IExportResult[];
10131
+ /**
10132
+ * Visual export results
10133
+ */
10134
+ visualExports?: IExportResult[];
10135
+ }
10136
+
10137
+ /**
10138
+ * Data from the webhook message.
10139
+ *
10140
+ * @alpha
10141
+ */
10142
+ export declare type IWebhookMessageDataSchedule = IWebhookMessageDataBase;
10143
+
9741
10144
  /**
9742
10145
  * Metadata object for webhook notification channel.
9743
10146
  *
@@ -9956,6 +10359,7 @@ export declare interface IWorkspaceDataFilterSetting {
9956
10359
  ref: ObjRef;
9957
10360
  title?: string;
9958
10361
  filterValues: string[];
10362
+ isInherited: boolean;
9959
10363
  }
9960
10364
 
9961
10365
  /**
@@ -11136,7 +11540,7 @@ export declare function newVirtualArithmeticMeasure(measuresOrIds: ReadonlyArray
11136
11540
  * Internal - all users within the organization.
11137
11541
  * @beta
11138
11542
  */
11139
- export declare type NotificationChannelAllowedRecipients = "creator" | "internal";
11543
+ export declare type NotificationChannelAllowedRecipients = "creator" | "internal" | "external";
11140
11544
 
11141
11545
  /**
11142
11546
  * Type of the destination of the notification channel, where the notifications are to be sent.
@@ -11145,6 +11549,13 @@ export declare type NotificationChannelAllowedRecipients = "creator" | "internal
11145
11549
  */
11146
11550
  export declare type NotificationChannelDestinationType = "webhook" | "smtp" | "inPlatform";
11147
11551
 
11552
+ /**
11553
+ * Type of the notification.
11554
+ *
11555
+ * @alpha
11556
+ */
11557
+ export declare type NotificationType = "alertNotification" | "scheduleNotification" | "testNotification";
11558
+
11148
11559
  /**
11149
11560
  * Metadata object types
11150
11561
  *
@@ -11563,6 +11974,22 @@ export declare type VisualizationProperties = {
11563
11974
  [key: string]: any;
11564
11975
  };
11565
11976
 
11977
+ /**
11978
+ * Webhook recipient.
11979
+ *
11980
+ * @alpha
11981
+ */
11982
+ export declare type WebhookRecipient = {
11983
+ /**
11984
+ * Identifier of the recipient.
11985
+ */
11986
+ id: string;
11987
+ /**
11988
+ * Email of the recipient.
11989
+ */
11990
+ email: string;
11991
+ };
11992
+
11566
11993
  /**
11567
11994
  * Week start day
11568
11995
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-model",
3
- "version": "10.17.0-alpha.2",
3
+ "version": "10.17.0-alpha.21",
4
4
  "author": "GoodData",
5
5
  "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations",
6
6
  "repository": {
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exportDefinitions/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACtF,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAElE;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C,WAAW,EAAE,UAAU,GAAG,WAAW,CAAC;CACzC;AAED;;;;GAIG;AACH,MAAM,WAAW,4CAA4C;IACzD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,UAAU,GAAG,WAAW,CAAC;CAC1C;AAED;;;;GAIG;AACH,MAAM,WAAW,2CAA2C;IACxD,mBAAmB,EAAE,UAAU,CAAC;IAChC;;OAEG;IACH,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC;CACvB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,iCAAiC;IAC9C,SAAS,EAAE,UAAU,CAAC;IACtB,OAAO,CAAC,EAAE,iBAAiB,EAAE,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,MAAM,wCAAwC,GAAG;IACnD,IAAI,EAAE,WAAW,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,KAAK,CAAC;IACd,QAAQ,CAAC,EAAE,kCAAkC,CAAC;IAC9C,OAAO,EAAE,iCAAiC,CAAC;CAC9C,CAAC;AAEF;;;GAGG;AACH,wBAAgB,yCAAyC,CACrD,GAAG,EAAE,OAAO,GACb,GAAG,IAAI,wCAAwC,CAEjD;AAED;;;;GAIG;AACH,MAAM,MAAM,kDAAkD,GAAG;IAC7D,IAAI,EAAE,qBAAqB,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,CAAC;IACxC,QAAQ,CAAC,EAAE,4CAA4C,CAAC;IACxD,OAAO,EAAE,2CAA2C,CAAC;CACxD,CAAC;AAEF;;;GAGG;AACH,wBAAgB,mDAAmD,CAC/D,GAAG,EAAE,OAAO,GACb,GAAG,IAAI,kDAAkD,CAK3D;AAED;;;;GAIG;AACH,MAAM,MAAM,+BAA+B,GACrC,wCAAwC,GACxC,kDAAkD,CAAC;AAEzD;;;;;GAKG;AACH,MAAM,WAAW,qBAAqB;IAClC,cAAc,EAAE,+BAA+B,CAAC;CACnD;AAED;;;;GAIG;AACH,MAAM,WAAW,+BAAgC,SAAQ,qBAAqB,EAAE,eAAe,EAAE,UAAU;IACvG,IAAI,EAAE,kBAAkB,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,WAAW,yCACb,SAAQ,qBAAqB,EACzB,yBAAyB;IAC7B,IAAI,EAAE,kBAAkB,CAAC;CAC5B;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CAAC,gBAAgB,EAAE,+BAA+B,GAAG,MAAM,CAI/F;AAED;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACnC,gBAAgB,EAAE,+BAA+B,GAClD,MAAM,GAAG,SAAS,CAIpB;AAED;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACnC,gBAAgB,EAAE,+BAA+B,GAClD,MAAM,GAAG,SAAS,CAIpB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exportDefinitions/index.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAKzC,OAAO,OAAO,MAAM,mBAAmB,CAAC;AAiExC;;;GAGG;AACH,MAAM,UAAU,yCAAyC,CACrD,GAAY;IAEZ,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAK,GAAgD,CAAC,IAAI,KAAK,WAAW,CAAC;AACnG,CAAC;AAeD;;;GAGG;AACH,MAAM,UAAU,mDAAmD,CAC/D,GAAY;IAEZ,OAAO,CACH,CAAC,OAAO,CAAC,GAAG,CAAC;QACZ,GAA0D,CAAC,IAAI,KAAK,qBAAqB,CAC7F,CAAC;AACN,CAAC;AAyCD;;;;;;GAMG;AACH,MAAM,UAAU,qBAAqB,CAAC,gBAAiD;IACnF,SAAS,CAAC,gBAAgB,EAAE,uDAAuD,CAAC,CAAC;IAErF,OAAO,gBAAgB,CAAC,KAAK,CAAC;AAClC,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,uBAAuB,CACnC,gBAAiD;IAEjD,SAAS,CAAC,gBAAgB,EAAE,qCAAqC,CAAC,CAAC;IAEnE,OAAO,gBAAgB,CAAC,OAAO,CAAC;AACpC,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,uBAAuB,CACnC,gBAAiD;IAEjD,SAAS,CAAC,gBAAgB,EAAE,qCAAqC,CAAC,CAAC;IAEnE,OAAO,gBAAgB,CAAC,OAAO,CAAC;AACpC,CAAC"}
File without changes