@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.
- package/build/main/common/flow.d.ts +23 -0
- package/build/main/common/flow.js +2 -0
- package/build/main/common/index.d.ts +1 -0
- package/build/main/common/index.js +1 -0
- package/build/main/gqty/schema.generated.d.ts +66 -1599
- package/build/main/gqty/schema.generated.js +31 -687
- package/build/main/tsconfig.main.tsbuildinfo +1 -1
- package/build/module/common/flow.d.ts +23 -0
- package/build/module/common/flow.js +1 -0
- package/build/module/common/index.d.ts +1 -0
- package/build/module/common/index.js +1 -0
- package/build/module/gqty/schema.generated.d.ts +66 -1599
- package/build/module/gqty/schema.generated.js +31 -687
- package/build/module/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/common/flow.ts +34 -0
- package/src/common/index.ts +1 -0
- package/src/gqty/schema.generated.d.ts +66 -1599
- package/src/gqty/schema.generated.js +31 -687
|
@@ -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
|
@@ -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';
|