@walkeros/server-destination-gcp 2.0.1 → 2.1.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.
- package/dist/dev.d.mts +12 -1
- package/dist/dev.d.ts +12 -1
- package/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/schemas.js +1 -1
- package/dist/schemas.js.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/schemas.mjs.map +1 -1
- package/dist/walkerOS.json +174 -2
- package/package.json +2 -2
package/dist/dev.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as _walkeros_core_dev from '@walkeros/core/dev';
|
|
2
2
|
import { DestinationServer } from '@walkeros/server-core';
|
|
3
3
|
import { BigQuery } from '@google-cloud/bigquery';
|
|
4
|
+
import { Flow } from '@walkeros/core';
|
|
4
5
|
|
|
5
6
|
declare const settings: _walkeros_core_dev.JSONSchema;
|
|
6
7
|
declare const mapping: _walkeros_core_dev.JSONSchema;
|
|
@@ -30,9 +31,19 @@ declare namespace env {
|
|
|
30
31
|
export { env_push as push, env_simulation as simulation };
|
|
31
32
|
}
|
|
32
33
|
|
|
34
|
+
declare const pageView: Flow.StepExample;
|
|
35
|
+
declare const purchase: Flow.StepExample;
|
|
36
|
+
|
|
37
|
+
declare const step_pageView: typeof pageView;
|
|
38
|
+
declare const step_purchase: typeof purchase;
|
|
39
|
+
declare namespace step {
|
|
40
|
+
export { step_pageView as pageView, step_purchase as purchase };
|
|
41
|
+
}
|
|
42
|
+
|
|
33
43
|
declare const index_env: typeof env;
|
|
44
|
+
declare const index_step: typeof step;
|
|
34
45
|
declare namespace index {
|
|
35
|
-
export { index_env as env };
|
|
46
|
+
export { index_env as env, index_step as step };
|
|
36
47
|
}
|
|
37
48
|
|
|
38
49
|
export { index as examples, schemas };
|
package/dist/dev.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as _walkeros_core_dev from '@walkeros/core/dev';
|
|
2
2
|
import { DestinationServer } from '@walkeros/server-core';
|
|
3
3
|
import { BigQuery } from '@google-cloud/bigquery';
|
|
4
|
+
import { Flow } from '@walkeros/core';
|
|
4
5
|
|
|
5
6
|
declare const settings: _walkeros_core_dev.JSONSchema;
|
|
6
7
|
declare const mapping: _walkeros_core_dev.JSONSchema;
|
|
@@ -30,9 +31,19 @@ declare namespace env {
|
|
|
30
31
|
export { env_push as push, env_simulation as simulation };
|
|
31
32
|
}
|
|
32
33
|
|
|
34
|
+
declare const pageView: Flow.StepExample;
|
|
35
|
+
declare const purchase: Flow.StepExample;
|
|
36
|
+
|
|
37
|
+
declare const step_pageView: typeof pageView;
|
|
38
|
+
declare const step_purchase: typeof purchase;
|
|
39
|
+
declare namespace step {
|
|
40
|
+
export { step_pageView as pageView, step_purchase as purchase };
|
|
41
|
+
}
|
|
42
|
+
|
|
33
43
|
declare const index_env: typeof env;
|
|
44
|
+
declare const index_step: typeof step;
|
|
34
45
|
declare namespace index {
|
|
35
|
-
export { index_env as env };
|
|
46
|
+
export { index_env as env, index_step as step };
|
|
36
47
|
}
|
|
37
48
|
|
|
38
49
|
export { index as examples, schemas };
|