@genesislcap/foundation-openfin 14.214.1-FUI-2233.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.
Files changed (33) hide show
  1. package/MODULE_FEDERATION.md +11 -0
  2. package/README.md +59 -0
  3. package/dist/dts/index.d.ts +8 -0
  4. package/dist/dts/index.d.ts.map +1 -0
  5. package/dist/dts/notifications/openfin-notifications-listener.d.ts +125 -0
  6. package/dist/dts/notifications/openfin-notifications-listener.d.ts.map +1 -0
  7. package/dist/dts/tsdoc-metadata.json +11 -0
  8. package/dist/dts/utils.d.ts +7 -0
  9. package/dist/dts/utils.d.ts.map +1 -0
  10. package/dist/esm/index.js +3 -0
  11. package/dist/esm/notifications/openfin-notifications-listener.js +148 -0
  12. package/dist/esm/utils.js +6 -0
  13. package/dist/foundation-openfin.api.json +574 -0
  14. package/dist/foundation-openfin.d.ts +136 -0
  15. package/docs/.gitattributes +2 -0
  16. package/docs/api/foundation-openfin.isopenfin.md +16 -0
  17. package/docs/api/foundation-openfin.md +24 -0
  18. package/docs/api/foundation-openfin.openfinnotifications.connectedcallback.md +15 -0
  19. package/docs/api/foundation-openfin.openfinnotifications.md +33 -0
  20. package/docs/api/foundation-openfin.openfinnotifications.mode.md +19 -0
  21. package/docs/api/foundation-openfin.openfinnotifications.notificationsplatform.md +40 -0
  22. package/docs/api/foundation-openfin.openfinnotifications.shownotificationtoast.md +22 -0
  23. package/docs/api/foundation-openfin.openfinnotifications.toast.md +19 -0
  24. package/docs/api/foundation-openfin.openfinnotifications.toastbuttons.md +71 -0
  25. package/docs/api/foundation-openfin.openfintoastbutton.cta.md +11 -0
  26. package/docs/api/foundation-openfin.openfintoastbutton.md +25 -0
  27. package/docs/api/foundation-openfin.openfintoastbutton.message.md +11 -0
  28. package/docs/api/foundation-openfin.openfintoastbutton.task.md +11 -0
  29. package/docs/api/index.md +12 -0
  30. package/docs/api-report.md +42 -0
  31. package/license.txt +46 -0
  32. package/package.json +96 -0
  33. package/tsdoc.json +20 -0
@@ -0,0 +1,136 @@
1
+ import { NotificationDataRow } from '@genesislcap/foundation-notifications';
2
+ import { NotificationListener } from '@genesislcap/foundation-ui';
3
+ import { NotificationsPlatform } from '@openfin/workspace/notifications';
4
+ import { ToastButton } from '@genesislcap/foundation-notifications';
5
+
6
+ /**
7
+ * @public
8
+ * @remarks
9
+ * Util method to check whether an application is running in an openfin workspace container
10
+ */
11
+ export declare const isOpenFin: () => boolean;
12
+
13
+ /**
14
+ * @public
15
+ * @remarks
16
+ * Openfin Notifications custom element
17
+ */
18
+ export declare class OpenfinNotifications extends NotificationListener {
19
+ /**
20
+ * @beta
21
+ * @remarks
22
+ * Config for registering a workspace with the Openfin notifications component
23
+ * @example
24
+ * Create your notifications platform constant
25
+ * ```ts
26
+ * const notificationsPlatform: NotificationsPlatform = {
27
+ * id: 'platform-id', // the id of your openfin workspace
28
+ * icon: 'https://localhost:8080/path/to/icon.svg', // the url to the icon for your workspace
29
+ * title: 'Platform title' // the platform title which will appear in notifications
30
+ * }
31
+ * ```
32
+ * Setting the property in an html view template
33
+ * ```html
34
+ * <openfin-notifications-listener
35
+ * ...
36
+ * :notificationsPlatform="${() => notificationsPlatform}"
37
+ * >
38
+ * </openfin-notifications-listener>
39
+ * ```
40
+ */
41
+ notificationsPlatform: NotificationsPlatform;
42
+ /**
43
+ * @beta
44
+ * @remarks
45
+ * The notification type of toast messages
46
+ */
47
+ toast: 'transient' | 'sticky' | 'none';
48
+ /**
49
+ * @beta
50
+ * @remarks
51
+ * The notification sound mode
52
+ */
53
+ mode: 'default' | 'silent';
54
+ /**
55
+ * Array of button configs for openfin notification toasts
56
+ * @public
57
+ * @example
58
+ * In these examples you could
59
+ * 1. View a trade, this is done by routing to the corresponding route. Dispatching the highlighted record id to the store and retrieving it in the view from the store.
60
+ * 2. Call an endpoint to approve a trade
61
+ * 3. Call an endpoint to reject a trade
62
+ * ```html
63
+ * <openfin-notifications-listener
64
+ * ...
65
+ * :toastButtons="${x => [
66
+ * {
67
+ * {
68
+ * condition: ({details}) => details.HEADER === 'Trade added',
69
+ * action: ({details, buttonElement }) => {
70
+ * Route.path.push('/some-route') // redirect to a route
71
+ * buttonElement.$emit('some-store-event', details.TABLE_ENTITY_ID); //emit the entity id to the store
72
+ * }
73
+ * },
74
+ * placeholder: 'View Trade',
75
+ * task: 'view-trade'
76
+ * },
77
+ * {
78
+ * {
79
+ * condition: ({details}) => details.HEADER === 'Trade added',
80
+ * action: ({details, buttonElement }) => {
81
+ * const connect = getConnect();
82
+ * connect.commitEvent('approve-trade', {
83
+ * DETAILS: {
84
+ * TRADE_ID: details.TABLE_ENTITY_ID,
85
+ * APPROVED: true
86
+ * }
87
+ * })
88
+ * }
89
+ * },
90
+ * placeholder: 'Approve Trade',
91
+ * task: 'approve-trade'
92
+ * },
93
+ * {
94
+ * {
95
+ * condition: ({details}) => details.HEADER === 'Trade added',
96
+ * action: ({details, buttonElement }) => {
97
+ * const connect = getConnect();
98
+ * connect.commitEvent('approve-trade', {
99
+ * DETAILS: {
100
+ * TRADE_ID: details.TABLE_ENTITY_ID,
101
+ * APPROVED: false
102
+ * }
103
+ * })
104
+ * }
105
+ * },
106
+ * placeholder: 'Reject Trade',
107
+ * task: 'reject-trade'
108
+ * },
109
+ *
110
+ * ]
111
+ * >
112
+ * </openfin-notifications-listener>
113
+ * ```
114
+
115
+ *
116
+ */
117
+ toastButtons: OpenfinToastButton[];
118
+ connectedCallback(): Promise<void>;
119
+ private addButtonListeners;
120
+ protected showNotificationToast(row: NotificationDataRow): Promise<void>;
121
+ private mapToastButtons;
122
+ }
123
+
124
+ /**
125
+ * @public
126
+ * @remarks
127
+ * OpenfinToastButton interface which extends ToastButton.
128
+ * Adds the task property which is used in mapping button actions to their corresponding callbacks
129
+ */
130
+ export declare interface OpenfinToastButton extends ToastButton {
131
+ task: string;
132
+ cta?: boolean;
133
+ message?: string;
134
+ }
135
+
136
+ export { }
@@ -0,0 +1,2 @@
1
+ *.md -diff
2
+ *.md linguist-generated
@@ -0,0 +1,16 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [isOpenFin](./foundation-openfin.isopenfin.md)
4
+
5
+ ## isOpenFin variable
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ isOpenFin: () => boolean
11
+ ```
12
+
13
+ ## Remarks
14
+
15
+ Util method to check whether an application is running in an openfin workspace container
16
+
@@ -0,0 +1,24 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md)
4
+
5
+ ## foundation-openfin package
6
+
7
+ ## Classes
8
+
9
+ | Class | Description |
10
+ | --- | --- |
11
+ | [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) | |
12
+
13
+ ## Interfaces
14
+
15
+ | Interface | Description |
16
+ | --- | --- |
17
+ | [OpenfinToastButton](./foundation-openfin.openfintoastbutton.md) | |
18
+
19
+ ## Variables
20
+
21
+ | Variable | Description |
22
+ | --- | --- |
23
+ | [isOpenFin](./foundation-openfin.isopenfin.md) | |
24
+
@@ -0,0 +1,15 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) &gt; [connectedCallback](./foundation-openfin.openfinnotifications.connectedcallback.md)
4
+
5
+ ## OpenfinNotifications.connectedCallback() method
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ connectedCallback(): Promise<void>;
11
+ ```
12
+ **Returns:**
13
+
14
+ Promise&lt;void&gt;
15
+
@@ -0,0 +1,33 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md)
4
+
5
+ ## OpenfinNotifications class
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ export declare class OpenfinNotifications extends NotificationListener
11
+ ```
12
+ **Extends:** NotificationListener
13
+
14
+ ## Remarks
15
+
16
+ Openfin Notifications custom element
17
+
18
+ ## Properties
19
+
20
+ | Property | Modifiers | Type | Description |
21
+ | --- | --- | --- | --- |
22
+ | [mode](./foundation-openfin.openfinnotifications.mode.md) | | 'default' \| 'silent' | **_(BETA)_** |
23
+ | [notificationsPlatform](./foundation-openfin.openfinnotifications.notificationsplatform.md) | | NotificationsPlatform | **_(BETA)_** |
24
+ | [toast](./foundation-openfin.openfinnotifications.toast.md) | | 'transient' \| 'sticky' \| 'none' | **_(BETA)_** |
25
+ | [toastButtons](./foundation-openfin.openfinnotifications.toastbuttons.md) | | [OpenfinToastButton](./foundation-openfin.openfintoastbutton.md)<!-- -->\[\] | Array of button configs for openfin notification toasts |
26
+
27
+ ## Methods
28
+
29
+ | Method | Modifiers | Description |
30
+ | --- | --- | --- |
31
+ | [connectedCallback()](./foundation-openfin.openfinnotifications.connectedcallback.md) | | |
32
+ | [showNotificationToast(row)](./foundation-openfin.openfinnotifications.shownotificationtoast.md) | <code>protected</code> | |
33
+
@@ -0,0 +1,19 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) &gt; [mode](./foundation-openfin.openfinnotifications.mode.md)
4
+
5
+ ## OpenfinNotifications.mode property
6
+
7
+ > This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
8
+ >
9
+
10
+ **Signature:**
11
+
12
+ ```typescript
13
+ mode: 'default' | 'silent';
14
+ ```
15
+
16
+ ## Remarks
17
+
18
+ The notification sound mode
19
+
@@ -0,0 +1,40 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) &gt; [notificationsPlatform](./foundation-openfin.openfinnotifications.notificationsplatform.md)
4
+
5
+ ## OpenfinNotifications.notificationsPlatform property
6
+
7
+ > This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
8
+ >
9
+
10
+ **Signature:**
11
+
12
+ ```typescript
13
+ notificationsPlatform: NotificationsPlatform;
14
+ ```
15
+
16
+ ## Remarks
17
+
18
+ Config for registering a workspace with the Openfin notifications component
19
+
20
+ ## Example
21
+
22
+ Create your notifications platform constant
23
+
24
+ ```ts
25
+ const notificationsPlatform: NotificationsPlatform = {
26
+ id: 'platform-id', // the id of your openfin workspace
27
+ icon: 'https://localhost:8080/path/to/icon.svg', // the url to the icon for your workspace
28
+ title: 'Platform title' // the platform title which will appear in notifications
29
+ }
30
+ ```
31
+ Setting the property in an html view template
32
+
33
+ ```html
34
+ <openfin-notifications-listener
35
+ ...
36
+ :notificationsPlatform="${() => notificationsPlatform}"
37
+ >
38
+ </openfin-notifications-listener>
39
+ ```
40
+
@@ -0,0 +1,22 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) &gt; [showNotificationToast](./foundation-openfin.openfinnotifications.shownotificationtoast.md)
4
+
5
+ ## OpenfinNotifications.showNotificationToast() method
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ protected showNotificationToast(row: NotificationDataRow): Promise<void>;
11
+ ```
12
+
13
+ ## Parameters
14
+
15
+ | Parameter | Type | Description |
16
+ | --- | --- | --- |
17
+ | row | NotificationDataRow | |
18
+
19
+ **Returns:**
20
+
21
+ Promise&lt;void&gt;
22
+
@@ -0,0 +1,19 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) &gt; [toast](./foundation-openfin.openfinnotifications.toast.md)
4
+
5
+ ## OpenfinNotifications.toast property
6
+
7
+ > This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
8
+ >
9
+
10
+ **Signature:**
11
+
12
+ ```typescript
13
+ toast: 'transient' | 'sticky' | 'none';
14
+ ```
15
+
16
+ ## Remarks
17
+
18
+ The notification type of toast messages
19
+
@@ -0,0 +1,71 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinNotifications](./foundation-openfin.openfinnotifications.md) &gt; [toastButtons](./foundation-openfin.openfinnotifications.toastbuttons.md)
4
+
5
+ ## OpenfinNotifications.toastButtons property
6
+
7
+ Array of button configs for openfin notification toasts
8
+
9
+ **Signature:**
10
+
11
+ ```typescript
12
+ toastButtons: OpenfinToastButton[];
13
+ ```
14
+
15
+ ## Example
16
+
17
+ In these examples you could 1. View a trade, this is done by routing to the corresponding route. Dispatching the highlighted record id to the store and retrieving it in the view from the store. 2. Call an endpoint to approve a trade 3. Call an endpoint to reject a trade
18
+
19
+ ```html
20
+ <openfin-notifications-listener
21
+ ...
22
+ :toastButtons="${x => [
23
+ {
24
+ {
25
+ condition: ({details}) => details.HEADER === 'Trade added',
26
+ action: ({details, buttonElement }) => {
27
+ Route.path.push('/some-route') // redirect to a route
28
+ buttonElement.$emit('some-store-event', details.TABLE_ENTITY_ID); //emit the entity id to the store
29
+ }
30
+ },
31
+ placeholder: 'View Trade',
32
+ task: 'view-trade'
33
+ },
34
+ {
35
+ {
36
+ condition: ({details}) => details.HEADER === 'Trade added',
37
+ action: ({details, buttonElement }) => {
38
+ const connect = getConnect();
39
+ connect.commitEvent('approve-trade', {
40
+ DETAILS: {
41
+ TRADE_ID: details.TABLE_ENTITY_ID,
42
+ APPROVED: true
43
+ }
44
+ })
45
+ }
46
+ },
47
+ placeholder: 'Approve Trade',
48
+ task: 'approve-trade'
49
+ },
50
+ {
51
+ {
52
+ condition: ({details}) => details.HEADER === 'Trade added',
53
+ action: ({details, buttonElement }) => {
54
+ const connect = getConnect();
55
+ connect.commitEvent('approve-trade', {
56
+ DETAILS: {
57
+ TRADE_ID: details.TABLE_ENTITY_ID,
58
+ APPROVED: false
59
+ }
60
+ })
61
+ }
62
+ },
63
+ placeholder: 'Reject Trade',
64
+ task: 'reject-trade'
65
+ },
66
+
67
+ ]
68
+ >
69
+ </openfin-notifications-listener>
70
+ ```
71
+
@@ -0,0 +1,11 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinToastButton](./foundation-openfin.openfintoastbutton.md) &gt; [cta](./foundation-openfin.openfintoastbutton.cta.md)
4
+
5
+ ## OpenfinToastButton.cta property
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ cta?: boolean;
11
+ ```
@@ -0,0 +1,25 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinToastButton](./foundation-openfin.openfintoastbutton.md)
4
+
5
+ ## OpenfinToastButton interface
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ export interface OpenfinToastButton extends ToastButton
11
+ ```
12
+ **Extends:** ToastButton
13
+
14
+ ## Remarks
15
+
16
+ OpenfinToastButton interface which extends ToastButton. Adds the task property which is used in mapping button actions to their corresponding callbacks
17
+
18
+ ## Properties
19
+
20
+ | Property | Modifiers | Type | Description |
21
+ | --- | --- | --- | --- |
22
+ | [cta?](./foundation-openfin.openfintoastbutton.cta.md) | | boolean | _(Optional)_ |
23
+ | [message?](./foundation-openfin.openfintoastbutton.message.md) | | string | _(Optional)_ |
24
+ | [task](./foundation-openfin.openfintoastbutton.task.md) | | string | |
25
+
@@ -0,0 +1,11 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinToastButton](./foundation-openfin.openfintoastbutton.md) &gt; [message](./foundation-openfin.openfintoastbutton.message.md)
4
+
5
+ ## OpenfinToastButton.message property
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ message?: string;
11
+ ```
@@ -0,0 +1,11 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-openfin](./foundation-openfin.md) &gt; [OpenfinToastButton](./foundation-openfin.openfintoastbutton.md) &gt; [task](./foundation-openfin.openfintoastbutton.task.md)
4
+
5
+ ## OpenfinToastButton.task property
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ task: string;
11
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md)
4
+
5
+ ## API Reference
6
+
7
+ ## Packages
8
+
9
+ | Package | Description |
10
+ | --- | --- |
11
+ | [@genesislcap/foundation-openfin](./foundation-openfin.md) | |
12
+
@@ -0,0 +1,42 @@
1
+ ## API Report File for "@genesislcap/foundation-openfin"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import { NotificationDataRow } from '@genesislcap/foundation-notifications';
8
+ import { NotificationListener } from '@genesislcap/foundation-ui';
9
+ import { NotificationsPlatform } from '@openfin/workspace/notifications';
10
+ import { ToastButton } from '@genesislcap/foundation-notifications';
11
+
12
+ // @public (undocumented)
13
+ export const isOpenFin: () => boolean;
14
+
15
+ // @public (undocumented)
16
+ export class OpenfinNotifications extends NotificationListener {
17
+ // (undocumented)
18
+ connectedCallback(): Promise<void>;
19
+ // @beta (undocumented)
20
+ mode: 'default' | 'silent';
21
+ // @beta (undocumented)
22
+ notificationsPlatform: NotificationsPlatform;
23
+ // (undocumented)
24
+ protected showNotificationToast(row: NotificationDataRow): Promise<void>;
25
+ // @beta (undocumented)
26
+ toast: 'transient' | 'sticky' | 'none';
27
+ toastButtons: OpenfinToastButton[];
28
+ }
29
+
30
+ // @public (undocumented)
31
+ export interface OpenfinToastButton extends ToastButton {
32
+ // (undocumented)
33
+ cta?: boolean;
34
+ // (undocumented)
35
+ message?: string;
36
+ // (undocumented)
37
+ task: string;
38
+ }
39
+
40
+ // (No @packageDocumentation comment for this package)
41
+
42
+ ```
package/license.txt ADDED
@@ -0,0 +1,46 @@
1
+ Developer License Agreement
2
+
3
+ This Developer License Agreement (the “Agreement”) is entered into by and between Genesis, Global FinTech Inc.(“Genesis”) and you and/or the entity on whose behalf you are downloading the Software (as defined below) (“you”). This Agreement forms a legally binding contract between you and Genesis in relation to your use of the software libraries, reference implementations, and other related demonstration code (collectively, the “Genesis Software”). [a]
4
+
5
+ To use the Software, you must first agree to this Agreement. You may not use the Software if you do not agree to be bound by the terms of this Agreement. Accordingly, you and Genesis acknowledge and agree as follows:
6
+
7
+ 1. LIMITED LICENSE.
8
+ Subject to your complete and ongoing compliance with all the terms and conditions set forth in this Agreement, including without limitation all license limitations and restrictions set forth herein, Genesis grants you the following limited, non-exclusive, non-transferable, non-sublicensable, revocable licenses to use, and (where applicable) authorize your employees to use, the Software internally solely in connection with building, developing and testing your own applications that interoperate with or incorporate the Software (“Applications”) for the purposes of evaluation.
9
+
10
+ 2. RESTRICTIONS.
11
+ A. By accessing or using the Software, you represent, warrant, and covenant that (a) you are a person or business entity engaged in the development of software applications, and (b) in the case of a business entity, you have the full power and authority to bind such entity to the terms of this Agreement.
12
+ B. You acknowledge that the foregoing license does not include any right to:
13
+ (i) redistribute, sell, lease, license, modify or otherwise create any derivative works of any portion of the Software, or;
14
+ (ii) distribute, deploy, or otherwise utilize Applications on a public, production, commercial, or other similar purpose other than internal use for evaluation and the development of non-public, experimental Applications (any other public, production, commercial, or similar use requires a separate agreement with Genesis), or
15
+ (iii) use or implement any undocumented feature or API or use any documented feature or API other than in accordance with applicable documentation. You agree to not to do any of the foregoing.
16
+ C. Except as expressly provided herein, you may not:
17
+ (a) reproduce, distribute, publicly display, or publicly perform any part of the Software;
18
+ (b) decompile, reverse engineer, or otherwise access or attempt to access the source code for the Software not made available to you in source code form;
19
+ (c) make or attempt to make any modification to, or otherwise create derivative works of the Software; or
20
+ (d) remove, obscure, interfere with or circumvent any feature of the Software, including without limitation any copyright or other intellectual property notices, security, or access control mechanism;
21
+ (f) use the Software to do anything illegal, including facilitating, promoting, or otherwise encouraging any illegal activities.
22
+
23
+ 3. RESERVATION OF RIGHTS.
24
+ A. The Software is owned by Genesis and licensed, not sold, to you. The Software, content, visual interfaces, interactive features, information, graphics, design, compilation, computer code, products, services, and all other elements of the Software and related documentation (the “Materials“), are protected by copyright, trade dress, patent, and trademark laws of the United States and other jurisdictions, international conventions, and all other relevant intellectual property and proprietary rights, and applicable laws (collectively, the “Intellectual Property Rights“).
25
+ B. You agree that Genesis or its subsidiaries or affiliated companies and/or its third-party licensors own all legal right, title and interest in and to the Software and Materials, including any and all Intellectual Property Rights. Genesis reserves all rights not expressly granted in this Agreement. You do not acquire any right, interest or title to the Materials, whether by implication, estoppel, or otherwise, except for the limited rights set forth in this Agreement.
26
+ C. You agree that the form and nature of the Software that Genesis provides may change without prior notice to you and that future versions of the Software may be incompatible with applications developed on previous of the Software. You agree that Genesis may stop (permanently or temporarily) providing the Software (or any features within the Software) to you or to users generally at Genesis’s sole discretion, without prior notice to you. Nothing in this Agreement gives you a right to use any of Genesis’s trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
27
+
28
+ 4. TERMINATION.
29
+ At Genesis’s sole discretion, Genesis may terminate your Developer License and cease provision of the Genesis Software with or without notice, effective immediately, for any reason or no reason at all. Upon the expiration or termination of this Agreement all rights and licenses granted under this Agreement will immediately terminate.
30
+
31
+ 5. THIRD PARTY SOFTWARE.
32
+ The Software consists of a package of components and may include references to certain third-party software (“Third Party Software”) that are provided by their authors under separate license terms (the “Third Party Terms”). Your use of any such Third-Party Software in conjunction with the Software in a manner consistent with this Agreement is permitted, however, you may have broader rights and/or restrictions under the applicable Third-Party Terms. Genesis cannot accept any responsibility for the Third-Party Software or your use thereof.
33
+
34
+ 6. DISCLAIMER OF WARRANTIES.
35
+ YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SOFTWARE IS AT YOUR SOLE RISK AND THAT THE SOFTWARE IS PROVIDED “AS IS” AND “AS AVAILABLE” WITHOUT WARRANTY OF ANY KIND FROM GENESIS. YOUR USE OF THE SOFTWARE AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SOFTWARE IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. GENESIS FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. GENESIS EXPRESSLY DISCLAIMS ANY WARRANTIES OF ANY KIND WITH RESPECT TO THE ACCURACY OR FUNCTIONALITY OF THE SOFTWARE, AND WITH RESPECT TO THE ACCURACY, VALIDITY, OR COMPLETENESS OF ANY INFORMATION OR FEATURES AVAILABLE THROUGH THE SOFTWARE, OR THE QUALITY OR CONSISTENCY OF THE SOFTWARE OR RESULTS OBTAINED THROUGH ITS USE.
36
+
37
+ 7. INDEMNIFICATION. To the maximum extent permitted by law, you agree to defend, indemnify, and hold harmless Genesis, its affiliates, and their respective directors, officers, employees, and agents, from and against any and all third-party claims, actions, suits, or proceedings, as well as any and all losses, liabilities, damages, costs, and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your breach of this Developer License; (b) your use or misuse of the Genesis Software; (c) your negligence or willful misconduct; and/or (d) your use of the Genesis Software that actually or allegedly infringes any Intellectual Property Rights or privacy rights of any third party in any jurisdiction.
38
+
39
+ 8. MISCELLANEOUS.
40
+ (a) If you are agreeing to be bound by this Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this Agreement. If you do not have the requisite authority, you may not accept this Agreement on behalf of your employer or other entity.
41
+ (b) This Developer License shall be governed by, and construed in accordance with, the laws of the State of New York without regard to conflict of law principles. For all purposes of this Developer License, the parties’ consent to exclusive jurisdiction and venue in the state and federal courts located in New York County, New York.
42
+ (c) Nothing in this Agreement, or in the nature of your access and use of the Genesis Software, shall create or is intended to create a joint-venture, partnership, or agency relationship between you and Genesis.
43
+ (d) You may not assign or transfer this Agreement or any of your rights or obligations hereunder, absent the prior written consent of Genesis.
44
+ (e) You agree that if Genesis does not exercise or enforce any legal right or remedy contained in this Agreement, this will not be taken to be a formal waiver of Genesis’s rights and that those rights or remedies will still be available to Genesis.
45
+ (f) This Agreement constitutes the complete understanding between you and Genesis with respect to the subject matter contained herein, and supersedes all prior written or oral communications, understandings, and agreements.
46
+ (g) If any provision of this Agreement is deemed to be illegal, invalid, or unenforceable, then that provision shall be removed, and the remaining terms will continue to be valid and enforceable.