@vrplatform/graphql 1.1.13 → 1.1.17

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 +1 @@
1
- {"root":["../../src/constants.ts","../../src/error.ts","../../src/index.ts","../../src/types.ts","../../src/wrap.ts","../../src/client/headers.ts","../../src/client/index.ts","../../src/client/subscription.ts","../../src/common/account.ts","../../src/common/address.ts","../../src/common/bank-record.ts","../../src/common/index.ts","../../src/common/listings.ts","../../src/common/tenant.ts","../../src/gqty/index.ts","../../src/gqty/schema.generated.d.ts","../../src/gqty/schema.generated.js"],"version":"5.9.2"}
1
+ {"root":["../../src/constants.ts","../../src/error.ts","../../src/index.ts","../../src/types.ts","../../src/wrap.ts","../../src/client/headers.ts","../../src/client/index.ts","../../src/client/subscription.ts","../../src/common/account.ts","../../src/common/address.ts","../../src/common/bank-record.ts","../../src/common/flow.ts","../../src/common/index.ts","../../src/common/listings.ts","../../src/common/tenant.ts","../../src/gqty/index.ts","../../src/gqty/schema.generated.d.ts","../../src/gqty/schema.generated.js"],"version":"5.9.2"}
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "!**/*.spec.*",
11
11
  "LICENSE"
12
12
  ],
13
- "version": "1.1.13",
13
+ "version": "1.1.17",
14
14
  "description": "Finalytic graphql",
15
15
  "main": "build/main/index.js",
16
16
  "module": "build/module/index.js",
@@ -0,0 +1,34 @@
1
+ export type FLOW_MAPPING_SCHEMA = {
2
+ [mapping_key: string]: {
3
+ title: string; // title for UI/display
4
+ description: string; // description for UI/display
5
+ internal: {
6
+ type: FLOW_MAPPING_TYPE;
7
+ filter?: string; // JSONB query for filtering the data
8
+ };
9
+ external: {
10
+ type: string;
11
+ filter?: string; // JSONB query for filtering the data
12
+ };
13
+ };
14
+ };
15
+ export type FLOW_SETTING_SCHEMA = {
16
+ [setting_key: string]: {
17
+ title: string; // title for UI/display
18
+ description: string; // description for UI/display
19
+ type: FLOW_MAPPING_TYPE;
20
+ filter?: string; // JSONB query for filtering the data
21
+ };
22
+ };
23
+ export type FLOW_MAPPING_TYPE =
24
+ | 'listing'
25
+ | 'account'
26
+ | 'booking_channel'
27
+ | 'contact_vendor'
28
+ | 'contact_owner'
29
+ | 'connection'
30
+ | 'value_number'
31
+ | 'value_percentage'
32
+ | 'value_string'
33
+ | 'value_currency'
34
+ | 'value_date';
@@ -1,5 +1,6 @@
1
1
  export * from './account';
2
2
  export * from './address';
3
3
  export * from './bank-record';
4
+ export * from './flow';
4
5
  export * from './listings';
5
6
  export * from './tenant';