@memberjunction/skip-types 2.69.1 → 2.71.0

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 (69) hide show
  1. package/dist/agent-types.d.ts +0 -3
  2. package/dist/agent-types.d.ts.map +1 -1
  3. package/dist/agent-types.js +0 -3
  4. package/dist/agent-types.js.map +1 -1
  5. package/dist/api-types.d.ts +0 -5
  6. package/dist/api-types.d.ts.map +1 -1
  7. package/dist/api-types.js +0 -5
  8. package/dist/api-types.js.map +1 -1
  9. package/dist/artifact-types.d.ts +0 -5
  10. package/dist/artifact-types.d.ts.map +1 -1
  11. package/dist/artifact-types.js +0 -5
  12. package/dist/artifact-types.js.map +1 -1
  13. package/dist/auth-types.d.ts +0 -5
  14. package/dist/auth-types.d.ts.map +1 -1
  15. package/dist/auth-types.js +0 -5
  16. package/dist/auth-types.js.map +1 -1
  17. package/dist/conversation-types.d.ts +0 -5
  18. package/dist/conversation-types.d.ts.map +1 -1
  19. package/dist/conversation-types.js +0 -5
  20. package/dist/conversation-types.js.map +1 -1
  21. package/dist/entity-metadata-types.d.ts +5 -10
  22. package/dist/entity-metadata-types.d.ts.map +1 -1
  23. package/dist/entity-metadata-types.js +3 -8
  24. package/dist/entity-metadata-types.js.map +1 -1
  25. package/dist/index.d.ts +0 -7
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +0 -7
  28. package/dist/index.js.map +1 -1
  29. package/dist/query-types.d.ts +0 -5
  30. package/dist/query-types.d.ts.map +1 -1
  31. package/dist/query-types.js +0 -5
  32. package/dist/query-types.js.map +1 -1
  33. package/dist/response-types.d.ts +2 -8
  34. package/dist/response-types.d.ts.map +1 -1
  35. package/dist/response-types.js +0 -5
  36. package/dist/response-types.js.map +1 -1
  37. package/dist/util.d.ts +0 -20
  38. package/dist/util.d.ts.map +1 -1
  39. package/dist/util.js +1 -50
  40. package/dist/util.js.map +1 -1
  41. package/package.json +4 -4
  42. package/dist/child-spec.d.ts +0 -83
  43. package/dist/child-spec.d.ts.map +0 -1
  44. package/dist/child-spec.js +0 -3
  45. package/dist/child-spec.js.map +0 -1
  46. package/dist/component-option.d.ts +0 -32
  47. package/dist/component-option.d.ts.map +0 -1
  48. package/dist/component-option.js +0 -3
  49. package/dist/component-option.js.map +0 -1
  50. package/dist/component-props-events.d.ts +0 -66
  51. package/dist/component-props-events.d.ts.map +0 -1
  52. package/dist/component-props-events.js +0 -3
  53. package/dist/component-props-events.js.map +0 -1
  54. package/dist/data-requirements.d.ts +0 -90
  55. package/dist/data-requirements.d.ts.map +0 -1
  56. package/dist/data-requirements.js +0 -3
  57. package/dist/data-requirements.js.map +0 -1
  58. package/dist/root-spec.d.ts +0 -87
  59. package/dist/root-spec.d.ts.map +0 -1
  60. package/dist/root-spec.js +0 -3
  61. package/dist/root-spec.js.map +0 -1
  62. package/dist/runtime-types.d.ts +0 -219
  63. package/dist/runtime-types.d.ts.map +0 -1
  64. package/dist/runtime-types.js +0 -3
  65. package/dist/runtime-types.js.map +0 -1
  66. package/dist/shared.d.ts +0 -44
  67. package/dist/shared.d.ts.map +0 -1
  68. package/dist/shared.js +0 -3
  69. package/dist/shared.js.map +0 -1
@@ -1,219 +0,0 @@
1
- import { CompositeKey } from "@memberjunction/core";
2
- import { SimpleDataContext } from "./shared";
3
- import { SimpleMetadata, SimpleRunQuery, SimpleRunView } from "./shared";
4
- /**
5
- * This interface defines the available callback functions that a Skip component might call in the parent.
6
- */
7
- export interface SkipComponentCallbacks {
8
- /**
9
- * The component can invoke this method in the callbacks object, when provided, to refresh the data context
10
- * and that will in turn result in the component's init function being called again with the new data context.
11
- * @returns
12
- */
13
- RefreshData: () => void;
14
- /**
15
- * If an action occurs inside a component where it would be desirable for the containing UI to open a specific
16
- * record, if supported, this event can be listened to and the container UI can then open the record.
17
- * @param entityName - this is the Entity NAME from the Entity metadata, not the table name or base view name. Use Entity Metadata to provide the entity name here
18
- * @param key - this is an array of key/value pairs representing the primary key. The format of a Composite Key is an array of KeyValuePair objects and KeyValuePair objects simply have FieldName and Value properties. In most cases entities have single-valued primary keys but this structure is here for complex entity types that have composite primary keys
19
- * @returns
20
- */
21
- OpenEntityRecord: (entityName: string, key: CompositeKey) => void;
22
- /**
23
- * This event should be raised by the HTML component whenever something changes within the component that should be tracked as a change in state
24
- * that will persist. userState is any valid, simple JavaScript object, meaning it can have scalars, arrays, objects, etc, it must be an object that
25
- * can be serialized to JSON, but otherwise has no special requirements. The parent component will be responsible for tracking the user-specific states
26
- * and passing them back to the HTML component each time it is loaded or if the user changes via the init function.
27
- * @param userState
28
- * @returns
29
- */
30
- UpdateUserState: (userState: any) => void;
31
- /**
32
- * Used for any other type of event notification that a component might want to send to the parent component.
33
- * @param eventName
34
- * @param eventData
35
- * @returns
36
- */
37
- NotifyEvent: (eventName: string, eventData: any) => void;
38
- }
39
- /**
40
- * This is the function signature for the initialization function provided by each Skip component via the SkipComponentObject so that a container can interact with it.
41
- * This function is called when the component is loaded by its container. The function receives the data context, an optional userState property, and a set of callbacks that can be used to interact with the parent component.
42
- * userState is an optional parameter that can be used to pass in any state information that the parent component wants to provide to the component that is specific
43
- * to the CURRENT user. If the component modifies the userState, it should notify the parent component via the UserStateChanged event in the callbacks object so that the parent component can handle storage.
44
- */
45
- export type SkipComponentInitFunction = (params: SkipComponentInitParams) => void;
46
- /**
47
- * This is the function signature for the print function that is provided by the component via the SkipComponentObject
48
- */
49
- export type SkipComponentPrintFunction = () => void;
50
- /**
51
- * This is the function signature for the refresh function that is provided by the component via the SkipComponentObject
52
- */
53
- export type SkipComponentRefreshFunction = () => void;
54
- /**
55
- * Parameters that are passed to the SkipComponentInitFunction when it is called by the parent component.
56
- */
57
- export interface SkipComponentInitParams {
58
- /**
59
- * Contains the static data specified by the root component specification. This data is pre-loaded and passed to
60
- * the component during initialization and anytime the component is refreshed.
61
- */
62
- staticData: SimpleDataContext;
63
- /**
64
- * Contains the dynamic data utilities that the component can use to access MemberJunction data. This includes
65
- * the metadata, run view, and run query utilities that the component can use to access data dynamically at runtime.
66
- * The component can use these utilities to fetch data at runtime based on the user's interactions with the component.
67
- */
68
- utilities?: SkipComponentUtilities;
69
- /**
70
- * Any valid serializable JavaScript object that represents the user-specific state for the component.
71
- */
72
- userState?: any;
73
- /**
74
- * Callbacks that the component can use to interact with the parent component. These callbacks allow the component to refresh data, open records, update user state, and send custom events.
75
- */
76
- callbacks?: SkipComponentCallbacks;
77
- /**
78
- * The default styles the component should use as specified by its parent (the container in the case of a root component, or a parent component in the case
79
- * of a child component). The component can alter these styles based on the requirements specified by the user in its design documentation.
80
- */
81
- styles?: SkipComponentStyles;
82
- }
83
- /**
84
- * This interface defines styles that can be applied to the component. The container can provide
85
- * styles to the top level component. The top level component can alter these styles based on
86
- * the prompting of the user, learned notes, etc, and adjust the styles of the component accordingly. In addition
87
- * the top level component will pass in its computed styles to each sub-component so that the sub-components
88
- * can do the same recursively down to any level of depth. This allows sub-components to inherit styles but
89
- * also make adjustments as required based on functional needs and user input.
90
- */
91
- export interface SkipComponentStyles {
92
- colors: {
93
- primary: string;
94
- primaryHover: string;
95
- primaryLight?: string;
96
- secondary: string;
97
- secondaryHover?: string;
98
- success: string;
99
- successLight?: string;
100
- warning?: string;
101
- warningLight?: string;
102
- error?: string;
103
- errorLight?: string;
104
- info?: string;
105
- infoLight?: string;
106
- background: string;
107
- surface: string;
108
- surfaceHover?: string;
109
- text: string;
110
- textSecondary: string;
111
- textTertiary?: string;
112
- textInverse?: string;
113
- border: string;
114
- borderLight?: string;
115
- borderFocus?: string;
116
- shadow?: string;
117
- shadowMedium?: string;
118
- shadowLarge?: string;
119
- [key: string]: string | undefined;
120
- };
121
- spacing: {
122
- xs: string;
123
- sm: string;
124
- md: string;
125
- lg: string;
126
- xl: string;
127
- xxl?: string;
128
- xxxl?: string;
129
- [key: string]: string | undefined;
130
- };
131
- typography: {
132
- fontFamily: string;
133
- fontSize: {
134
- xs?: string;
135
- sm: string;
136
- md: string;
137
- lg: string;
138
- xl: string;
139
- xxl?: string;
140
- xxxl?: string;
141
- [key: string]: string | undefined;
142
- };
143
- fontWeight?: {
144
- light?: string;
145
- regular?: string;
146
- medium?: string;
147
- semibold?: string;
148
- bold?: string;
149
- [key: string]: string | undefined;
150
- };
151
- lineHeight?: {
152
- tight?: string;
153
- normal?: string;
154
- relaxed?: string;
155
- [key: string]: string | undefined;
156
- };
157
- };
158
- borders: {
159
- radius: string | {
160
- sm?: string;
161
- md?: string;
162
- lg?: string;
163
- xl?: string;
164
- full?: string;
165
- [key: string]: string | undefined;
166
- };
167
- width: string | {
168
- thin?: string;
169
- medium?: string;
170
- thick?: string;
171
- [key: string]: string | undefined;
172
- };
173
- };
174
- shadows?: {
175
- sm?: string;
176
- md?: string;
177
- lg?: string;
178
- xl?: string;
179
- inner?: string;
180
- [key: string]: string | undefined;
181
- };
182
- transitions?: {
183
- fast?: string;
184
- normal?: string;
185
- slow?: string;
186
- [key: string]: string | undefined;
187
- };
188
- overflow: string;
189
- }
190
- /**
191
- * This is the interface that each Skip component will expose to the parent component and assign it a name globally on the window object so that the parent component can call it.
192
- * The component will create this object and it will include the members defined in this interface.
193
- */
194
- export interface SkipComponentObject {
195
- /**
196
- * The React component that Angular will render directly using ReactDOM.
197
- * This component receives props including data, userState, callbacks, utilities, and styles.
198
- */
199
- component: any;
200
- /**
201
- * The optional print function that is called when the user clicks on the print button in the parent of the component. This function will never be called by the parent before the init function so the print function
202
- * can assume the component has been initialized;
203
- */
204
- print?: SkipComponentPrintFunction;
205
- /**
206
- * The optional refresh function that is called when the user clicks on the refresh button in the parent of the component. This function will never be called by the parent before the init function so the refresh function
207
- */
208
- refresh?: SkipComponentRefreshFunction;
209
- }
210
- /**
211
- * This interface defines the utilities that are available to the Skip component. These utilities are used to interact with the host MemberJunction system to
212
- * retrieve metadata, run views, and run queries. The utilities are passed into the SkipComponentInitFunction by the container.
213
- */
214
- export interface SkipComponentUtilities {
215
- md: SimpleMetadata;
216
- rv: SimpleRunView;
217
- rq: SimpleRunQuery;
218
- }
219
- //# sourceMappingURL=runtime-types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"runtime-types.d.ts","sourceRoot":"","sources":["../src/runtime-types.ts"],"names":[],"mappings":"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"}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=runtime-types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"runtime-types.js","sourceRoot":"","sources":["../src/runtime-types.ts"],"names":[],"mappings":""}
package/dist/shared.d.ts DELETED
@@ -1,44 +0,0 @@
1
- import { RunQueryParams, RunQueryResult, RunViewParams, RunViewResult } from "@memberjunction/core";
2
- import { SkipEntityInfo } from "./entity-metadata-types";
3
- /**
4
- * This is a simple data context object that is passed into the SkipComponentInitFunction, it contains a property for each of the data context items and typically are named
5
- * data_item_1, data_item_2, etc. The data context is a simple JavaScript object that contains properties that are in turn data objects which are typically arrays of things, but can be anything.
6
- */
7
- export type SimpleDataContext = {
8
- [key: string]: any;
9
- };
10
- /**
11
- * Simple version of the @interface Metadata MemberJunction object that is passed to the Skip component.
12
- */
13
- export interface SimpleMetadata {
14
- entities: SkipEntityInfo[];
15
- }
16
- /**
17
- * Simple interface for running views in MemberJunction that can be used by components generated by Skip
18
- */
19
- export interface SimpleRunView {
20
- /**
21
- * Run a single view and return the results. The view is run dynamically against the MemberJunction host environment.
22
- * @param params
23
- * @returns
24
- */
25
- runView: (params: RunViewParams) => Promise<RunViewResult>;
26
- /**
27
- * Runs multiple views and returns the results. This is useful for running multiple views in parallel and returning the results in a single call.
28
- * @param params
29
- * @returns
30
- */
31
- runViews: (params: RunViewParams[]) => Promise<RunViewResult[]>;
32
- }
33
- /**
34
- * Simple interface for running predefined queries in MemberJunction that can be used by components generated by Skip
35
- */
36
- export interface SimpleRunQuery {
37
- /**
38
- * Run a single predefined query and return the results. The query is run dynamically against the MemberJunction host environment.
39
- * @param params
40
- * @returns
41
- */
42
- runQuery: (params: RunQueryParams) => Promise<RunQueryResult>;
43
- }
44
- //# sourceMappingURL=shared.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../src/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACpG,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAEzD;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB,CAAA;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B,QAAQ,EAAE,cAAc,EAAE,CAAA;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC1B;;;;OAIG;IACH,OAAO,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAC,aAAa,CAAC,CAAA;IAC1D;;;;OAIG;IACH,QAAQ,EAAE,CAAC,MAAM,EAAE,aAAa,EAAE,KAAK,OAAO,CAAC,aAAa,EAAE,CAAC,CAAA;CAClE;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,QAAQ,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,OAAO,CAAC,cAAc,CAAC,CAAA;CAChE"}
package/dist/shared.js DELETED
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=shared.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"shared.js","sourceRoot":"","sources":["../src/shared.ts"],"names":[],"mappings":""}