@or-sdk/cards 0.26.0 → 0.27.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.
@@ -1,2 +1,368 @@
1
- export { DATA_HUB_SVC_SERVICE_KEY } from '@or-sdk/data-hub-svc';
1
+ export { DATA_HUB_SERVICE_KEY } from '@or-sdk/data-hub';
2
+ export const QUERY_LIST = `query list($entity: EntityType!, $params: ListInput!, $sandbox: Boolean) {
3
+ list(entity: $entity, params: $params, sandbox: $sandbox) {
4
+ records {
5
+ ... on Card {
6
+ id
7
+ schemaVersion
8
+ dateCreated
9
+ dateModified
10
+ data {
11
+ data
12
+ form {
13
+ code
14
+ data
15
+ style
16
+ template
17
+ }
18
+ presentation {
19
+ code
20
+ data
21
+ style
22
+ template
23
+ }
24
+ tagIds
25
+ }
26
+ reference {
27
+ id
28
+ type
29
+ }
30
+ template {
31
+ category
32
+ description
33
+ help
34
+ icon
35
+ iconUrl
36
+ implicitly
37
+ label
38
+ publishedBy
39
+ tags
40
+ type
41
+ version
42
+ }
43
+ }
44
+ }
45
+ last
46
+ }
47
+ }
48
+ `;
49
+ export const QUERY_LIST_CROSSACCOUNT = `query listCrossAccount($entity: EntityType!, $params: ListInput!, $accountId: String!) {
50
+ listCrossAccount(entity: $entity, params: $params, accountId: $accountId) {
51
+ records {
52
+ ... on Card {
53
+ id
54
+ schemaVersion
55
+ dateCreated
56
+ dateModified
57
+ data {
58
+ data
59
+ form {
60
+ code
61
+ data
62
+ style
63
+ template
64
+ }
65
+ presentation {
66
+ code
67
+ data
68
+ style
69
+ template
70
+ }
71
+ tagIds
72
+ }
73
+ reference {
74
+ id
75
+ type
76
+ }
77
+ template {
78
+ category
79
+ description
80
+ help
81
+ icon
82
+ iconUrl
83
+ implicitly
84
+ label
85
+ publishedBy
86
+ tags
87
+ type
88
+ version
89
+ }
90
+ }
91
+ }
92
+ last
93
+ }
94
+ }
95
+ `;
96
+ export const QUERY_GET = `query get($entity: EntityType!, $params: GetInput!) {
97
+ get(entity: $entity, params: $params) {
98
+ ... on Card {
99
+ id
100
+ schemaVersion
101
+ dateCreated
102
+ dateModified
103
+ data {
104
+ data
105
+ form {
106
+ code
107
+ data
108
+ style
109
+ template
110
+ }
111
+ presentation {
112
+ code
113
+ data
114
+ style
115
+ template
116
+ }
117
+ tagIds
118
+ }
119
+ reference {
120
+ id
121
+ type
122
+ }
123
+ template {
124
+ category
125
+ description
126
+ help
127
+ icon
128
+ iconUrl
129
+ implicitly
130
+ label
131
+ publishedBy
132
+ tags
133
+ type
134
+ version
135
+ }
136
+ }
137
+ }
138
+ }
139
+ `;
140
+ export const QUERY_GET_CROSSACCOUNT = `query getCrossAccount($entity: EntityType!, $params: GetInput!, $accountId: String!) {
141
+ getCrossAccount(entity: $entity, params: $params, accountId: $accountId) {
142
+ ... on Card {
143
+ id
144
+ schemaVersion
145
+ dateCreated
146
+ dateModified
147
+ data {
148
+ data
149
+ form {
150
+ code
151
+ data
152
+ style
153
+ template
154
+ }
155
+ presentation {
156
+ code
157
+ data
158
+ style
159
+ template
160
+ }
161
+ tagIds
162
+ }
163
+ reference {
164
+ id
165
+ type
166
+ }
167
+ template {
168
+ category
169
+ description
170
+ help
171
+ icon
172
+ iconUrl
173
+ implicitly
174
+ label
175
+ publishedBy
176
+ tags
177
+ type
178
+ version
179
+ }
180
+ }
181
+ }
182
+ }
183
+ `;
184
+ export const QUERY_CREATE = `mutation create($entity: EntityType!, $data: CreateInput!) {
185
+ create(entity: $entity, data: $data) {
186
+ ... on Card {
187
+ id
188
+ schemaVersion
189
+ dateCreated
190
+ dateModified
191
+ data {
192
+ data
193
+ form {
194
+ code
195
+ data
196
+ style
197
+ template
198
+ }
199
+ presentation {
200
+ code
201
+ data
202
+ style
203
+ template
204
+ }
205
+ tagIds
206
+ }
207
+ reference {
208
+ id
209
+ type
210
+ }
211
+ template {
212
+ category
213
+ description
214
+ help
215
+ icon
216
+ iconUrl
217
+ implicitly
218
+ label
219
+ publishedBy
220
+ tags
221
+ type
222
+ version
223
+ }
224
+ }
225
+ }
226
+ }
227
+ `;
228
+ export const QUERY_CREATE_CROSSACCOUNT = `mutation createCrossAccount($entity: EntityType!, $data: CreateInput!, $accountId: String!) {
229
+ createCrossAccount(entity: $entity, data: $data, accountId: $accountId) {
230
+ ... on Card {
231
+ id
232
+ schemaVersion
233
+ dateCreated
234
+ dateModified
235
+ data {
236
+ data
237
+ form {
238
+ code
239
+ data
240
+ style
241
+ template
242
+ }
243
+ presentation {
244
+ code
245
+ data
246
+ style
247
+ template
248
+ }
249
+ tagIds
250
+ }
251
+ reference {
252
+ id
253
+ type
254
+ }
255
+ template {
256
+ category
257
+ description
258
+ help
259
+ icon
260
+ iconUrl
261
+ implicitly
262
+ label
263
+ publishedBy
264
+ tags
265
+ type
266
+ version
267
+ }
268
+ }
269
+ }
270
+ }
271
+ `;
272
+ export const QUERY_UPDATE = `mutation update($entity: EntityType!, $data: UpdateInput!) {
273
+ update(entity: $entity, data: $data) {
274
+ ... on Card {
275
+ id
276
+ schemaVersion
277
+ dateCreated
278
+ dateModified
279
+ data {
280
+ data
281
+ form {
282
+ code
283
+ data
284
+ style
285
+ template
286
+ }
287
+ presentation {
288
+ code
289
+ data
290
+ style
291
+ template
292
+ }
293
+ tagIds
294
+ }
295
+ reference {
296
+ id
297
+ type
298
+ }
299
+ template {
300
+ category
301
+ description
302
+ help
303
+ icon
304
+ iconUrl
305
+ implicitly
306
+ label
307
+ publishedBy
308
+ tags
309
+ type
310
+ version
311
+ }
312
+ }
313
+ }
314
+ }
315
+ `;
316
+ export const QUERY_UPDATE_CROSSACCOUNT = `mutation updateCrossAccount($entity: EntityType!, $data: UpdateInput!, $accountId: String!) {
317
+ updateCrossAccount(entity: $entity, data: $data, accountId: $accountId) {
318
+ ... on Card {
319
+ id
320
+ schemaVersion
321
+ dateCreated
322
+ dateModified
323
+ data {
324
+ data
325
+ form {
326
+ code
327
+ data
328
+ style
329
+ template
330
+ }
331
+ presentation {
332
+ code
333
+ data
334
+ style
335
+ template
336
+ }
337
+ tagIds
338
+ }
339
+ reference {
340
+ id
341
+ type
342
+ }
343
+ template {
344
+ category
345
+ description
346
+ help
347
+ icon
348
+ iconUrl
349
+ implicitly
350
+ label
351
+ publishedBy
352
+ tags
353
+ type
354
+ version
355
+ }
356
+ }
357
+ }
358
+ }
359
+ `;
360
+ export const QUERY_DELETE = `mutation deleteTemporarily($entity: EntityType!, $data: DeleteInput!) {
361
+ deleteTemporarily(entity: $entity, data: $data) {
362
+ ... on AsyncRequest {
363
+ requestId
364
+ }
365
+ }
366
+ }`;
367
+ export const ENTITY_NAME = 'CARD';
2
368
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAExD,MAAM,CAAC,MAAM,UAAU,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CzB,CAAC;AAEF,MAAM,CAAC,MAAM,uBAAuB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CtC,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CxB,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CrC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2C3B,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CxC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2C3B,CAAC;AACF,MAAM,CAAC,MAAM,yBAAyB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CxC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;;;;;;EAM1B,CAAC;AAEH,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC"}
@@ -1,18 +1,18 @@
1
1
  import { List } from '@or-sdk/base';
2
- import { CardsConfig, Card, ListCardsParams, PaginationOptions } from './types';
2
+ import { GraphqlResponseCheckExecution } from '@or-sdk/data-hub';
3
+ import { CardsConfig, Card } from './types';
3
4
  import { Taggable } from '@or-sdk/tags';
4
5
  export declare class Cards implements Taggable<Card> {
5
- private readonly dataHubSvc;
6
+ private readonly dataHub;
6
7
  private readonly tags;
7
8
  constructor(params: CardsConfig);
8
- listCards(params?: ListCardsParams, paginationOptions?: PaginationOptions): Promise<List<Card>>;
9
+ init(): Promise<void>;
10
+ listCards(): Promise<List<Card>>;
9
11
  getCard(id: string): Promise<Card>;
10
12
  saveCard(source: Card): Promise<Card>;
11
13
  createCard(source: Card): Promise<Card>;
12
14
  updateCard(source: Card): Promise<Card>;
13
- deleteCard(cardId: string, temporarily?: boolean): Promise<void>;
14
- recoverCard(cardId: string): Promise<void>;
15
- cloneCard(cardId: string, keepTemplateDetails?: boolean): Promise<Card>;
15
+ deleteCard(cardId: string): Promise<GraphqlResponseCheckExecution>;
16
16
  addTags(source: Card, tagNames: string[]): Promise<Card>;
17
17
  removeTags(source: Card, tagNames: string[]): Promise<Card>;
18
18
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Cards.d.ts","sourceRoot":"","sources":["../../src/Cards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAY,MAAM,cAAc,CAAC;AAE9C,OAAO,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAChF,OAAO,EAAQ,QAAQ,EAA0C,MAAM,cAAc,CAAC;AAEtF,qBAAa,KAAM,YAAW,QAAQ,CAAC,IAAI,CAAC;IAC1C,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAO;gBAEhB,MAAM,EAAE,WAAW;IAuBlB,SAAS,CAAC,MAAM,GAAE,eAAoB,EAAE,iBAAiB,GAAE,iBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAoBvG,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAkBlC,QAAQ,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAUrC,UAAU,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAwBvC,UAAU,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBvC,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,UAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAmB7D,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAgB1C,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,mBAAmB,UAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAmBpE,OAAO,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAyBxD,UAAU,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;CAmBzE"}
1
+ {"version":3,"file":"Cards.d.ts","sourceRoot":"","sources":["../../src/Cards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAA4B,6BAA6B,EAAyC,MAAM,kBAAkB,CAAC;AAClI,OAAO,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAa5C,OAAO,EAAQ,QAAQ,EAA0C,MAAM,cAAc,CAAC;AAEtF,qBAAa,KAAM,YAAW,QAAQ,CAAC,IAAI,CAAC;IAC1C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;IAClC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAO;gBAEhB,MAAM,EAAE,WAAW;IAkBzB,IAAI;IAaG,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IA6BhC,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAoClC,QAAQ,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAUrC,UAAU,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAgCvC,UAAU,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAiCvC,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,6BAA6B,CAAC;IAoClE,OAAO,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAyBxD,UAAU,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;CAkBzE"}
@@ -1,2 +1,12 @@
1
- export { DATA_HUB_SVC_SERVICE_KEY } from '@or-sdk/data-hub-svc';
1
+ export { DATA_HUB_SERVICE_KEY } from '@or-sdk/data-hub';
2
+ export declare const QUERY_LIST = "query list($entity: EntityType!, $params: ListInput!, $sandbox: Boolean) {\n list(entity: $entity, params: $params, sandbox: $sandbox) {\n records {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n last\n }\n}\n";
3
+ export declare const QUERY_LIST_CROSSACCOUNT = "query listCrossAccount($entity: EntityType!, $params: ListInput!, $accountId: String!) {\n listCrossAccount(entity: $entity, params: $params, accountId: $accountId) {\n records {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n last\n }\n}\n";
4
+ export declare const QUERY_GET = "query get($entity: EntityType!, $params: GetInput!) {\n get(entity: $entity, params: $params) {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n}\n";
5
+ export declare const QUERY_GET_CROSSACCOUNT = "query getCrossAccount($entity: EntityType!, $params: GetInput!, $accountId: String!) {\n getCrossAccount(entity: $entity, params: $params, accountId: $accountId) {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n}\n";
6
+ export declare const QUERY_CREATE = "mutation create($entity: EntityType!, $data: CreateInput!) {\n create(entity: $entity, data: $data) {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n}\n";
7
+ export declare const QUERY_CREATE_CROSSACCOUNT = "mutation createCrossAccount($entity: EntityType!, $data: CreateInput!, $accountId: String!) {\n createCrossAccount(entity: $entity, data: $data, accountId: $accountId) {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n}\n";
8
+ export declare const QUERY_UPDATE = "mutation update($entity: EntityType!, $data: UpdateInput!) {\n update(entity: $entity, data: $data) {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n}\n";
9
+ export declare const QUERY_UPDATE_CROSSACCOUNT = "mutation updateCrossAccount($entity: EntityType!, $data: UpdateInput!, $accountId: String!) {\n updateCrossAccount(entity: $entity, data: $data, accountId: $accountId) {\n ... on Card {\n id\n schemaVersion\n dateCreated\n dateModified\n data {\n data\n form {\n code\n data\n style\n template\n }\n presentation {\n code\n data\n style\n template\n }\n tagIds\n }\n reference {\n id\n type\n }\n template {\n category\n description\n help\n icon\n iconUrl\n implicitly\n label\n publishedBy\n tags\n type\n version\n }\n }\n }\n}\n";
10
+ export declare const QUERY_DELETE = "mutation deleteTemporarily($entity: EntityType!, $data: DeleteInput!) {\n deleteTemporarily(entity: $entity, data: $data) {\n ... on AsyncRequest {\n requestId\n }\n }\n}";
11
+ export declare const ENTITY_NAME = "CARD";
2
12
  //# sourceMappingURL=constants.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAExD,eAAO,MAAM,UAAU,62BA8CtB,CAAC;AAEF,eAAO,MAAM,uBAAuB,24BA8CnC,CAAC;AAEF,eAAO,MAAM,SAAS,stBA2CrB,CAAC;AAEF,eAAO,MAAM,sBAAsB,0xBA2ClC,CAAC;AAEF,eAAO,MAAM,YAAY,4tBA2CxB,CAAC;AAEF,eAAO,MAAM,yBAAyB,gyBA2CrC,CAAC;AAEF,eAAO,MAAM,YAAY,4tBA2CxB,CAAC;AACF,eAAO,MAAM,yBAAyB,gyBA2CrC,CAAC;AAEF,eAAO,MAAM,YAAY,4LAMvB,CAAC;AAEH,eAAO,MAAM,WAAW,SAAS,CAAC"}
@@ -3,7 +3,7 @@ export declare type CardsConfig = {
3
3
  token: Token;
4
4
  discoveryUrl?: string;
5
5
  accountId?: string;
6
- dataHubSvcUrl?: string;
6
+ dataHubUrl?: string;
7
7
  };
8
8
  export declare type Card = {
9
9
  id?: string;
@@ -41,16 +41,4 @@ export declare type Card = {
41
41
  reference?: string | null;
42
42
  template?: string | null;
43
43
  };
44
- export declare type ListCardsParams = {
45
- query?: {
46
- [key: string]: unknown;
47
- };
48
- projection?: string[];
49
- group?: string[];
50
- sandbox?: boolean;
51
- };
52
- export declare type PaginationOptions = {
53
- limit?: number;
54
- offset?: number;
55
- };
56
44
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAErC,oBAAY,WAAW,GAAG;IAIxB,KAAK,EAAE,KAAK,CAAC;IAKb,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,oBAAY,IAAI,GAAG;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE;QACJ,YAAY,EAAE;YACZ,QAAQ,EAAE,MAAM,CAAC;YACjB,IAAI,EAAE,MAAM,CAAC;YACb,KAAK,EAAE,MAAM,CAAC;YACd,IAAI,EAAE;gBACJ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;aACxB,GAAG,IAAI,CAAC;SACV,CAAC;QACF,IAAI,EAAE;YACJ,QAAQ,EAAE,MAAM,CAAC;YACjB,IAAI,EAAE,MAAM,CAAC;YACb,KAAK,EAAE,MAAM,CAAC;YACd,IAAI,EAAE;gBACJ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;aACxB,CAAC;SACH,CAAC;QACF,IAAI,EAAE;YACJ,WAAW,EAAE,MAAM,CAAC;YACpB,MAAM,EAAE,MAAM,CAAC;YACf,YAAY,EAAE,MAAM,CAAC;YACrB,KAAK,EAAE,MAAM,CAAC;YACd,WAAW,EAAE,MAAM,EAAE,CAAC;YACtB,KAAK,EAAE,MAAM,CAAC;YACd,WAAW,EAAE,MAAM,CAAC;SACrB,CAAC;QACF,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;KAC1B,CAAC;IACF,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,oBAAY,eAAe,GAAG;IAC5B,KAAK,CAAC,EAAE;QACN,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;KACxB,CAAC;IACF,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAErC,oBAAY,WAAW,GAAG;IAIxB,KAAK,EAAE,KAAK,CAAC;IAKb,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,oBAAY,IAAI,GAAG;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE;QACJ,YAAY,EAAE;YACZ,QAAQ,EAAE,MAAM,CAAC;YACjB,IAAI,EAAE,MAAM,CAAC;YACb,KAAK,EAAE,MAAM,CAAC;YACd,IAAI,EAAE;gBACJ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;aACxB,GAAG,IAAI,CAAC;SACV,CAAC;QACF,IAAI,EAAE;YACJ,QAAQ,EAAE,MAAM,CAAC;YACjB,IAAI,EAAE,MAAM,CAAC;YACb,KAAK,EAAE,MAAM,CAAC;YACd,IAAI,EAAE;gBACJ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;aACxB,CAAC;SACH,CAAC;QACF,IAAI,EAAE;YACJ,WAAW,EAAE,MAAM,CAAC;YACpB,MAAM,EAAE,MAAM,CAAC;YACf,YAAY,EAAE,MAAM,CAAC;YACrB,KAAK,EAAE,MAAM,CAAC;YACd,WAAW,EAAE,MAAM,EAAE,CAAC;YACtB,KAAK,EAAE,MAAM,CAAC;YACd,WAAW,EAAE,MAAM,CAAC;SACrB,CAAC;QACF,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;KAC1B,CAAC;IACF,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/cards",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@or-sdk/base": "^0.26.7",
21
- "@or-sdk/data-hub-svc": "^2.0.0",
22
- "@or-sdk/tags": "^0.26.0"
21
+ "@or-sdk/data-hub": "^0.25.5",
22
+ "@or-sdk/tags": "^0.25.6"
23
23
  },
24
24
  "devDependencies": {
25
25
  "concurrently": "^6.4.0",
@@ -28,5 +28,5 @@
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "gitHead": "33b5f8276be1644a5e3567c87e19174e910a61ef"
31
+ "gitHead": "a765eb4cea6c2c6089a7374c9b6a427e78a5dab3"
32
32
  }