@stigg/typescript 0.1.0-beta.17 → 0.1.0-beta.19

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 (68) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/v1/events/data-export/data-export.d.mts +126 -0
  4. package/resources/v1/events/data-export/data-export.d.mts.map +1 -0
  5. package/resources/v1/events/data-export/data-export.d.ts +126 -0
  6. package/resources/v1/events/data-export/data-export.d.ts.map +1 -0
  7. package/resources/v1/events/data-export/data-export.js +45 -0
  8. package/resources/v1/events/data-export/data-export.js.map +1 -0
  9. package/resources/v1/events/data-export/data-export.mjs +40 -0
  10. package/resources/v1/events/data-export/data-export.mjs.map +1 -0
  11. package/resources/v1/events/data-export/destinations.d.mts +124 -0
  12. package/resources/v1/events/data-export/destinations.d.mts.map +1 -0
  13. package/resources/v1/events/data-export/destinations.d.ts +124 -0
  14. package/resources/v1/events/data-export/destinations.d.ts.map +1 -0
  15. package/resources/v1/events/data-export/destinations.js +41 -0
  16. package/resources/v1/events/data-export/destinations.js.map +1 -0
  17. package/resources/v1/events/data-export/destinations.mjs +37 -0
  18. package/resources/v1/events/data-export/destinations.mjs.map +1 -0
  19. package/resources/v1/events/data-export/index.d.mts +3 -0
  20. package/resources/v1/events/data-export/index.d.mts.map +1 -0
  21. package/resources/v1/events/data-export/index.d.ts +3 -0
  22. package/resources/v1/events/data-export/index.d.ts.map +1 -0
  23. package/resources/v1/events/data-export/index.js +9 -0
  24. package/resources/v1/events/data-export/index.js.map +1 -0
  25. package/resources/v1/events/data-export/index.mjs +4 -0
  26. package/resources/v1/events/data-export/index.mjs.map +1 -0
  27. package/resources/v1/events/data-export.d.mts +2 -0
  28. package/resources/v1/events/data-export.d.mts.map +1 -0
  29. package/resources/v1/events/data-export.d.ts +2 -0
  30. package/resources/v1/events/data-export.d.ts.map +1 -0
  31. package/resources/v1/events/data-export.js +6 -0
  32. package/resources/v1/events/data-export.js.map +1 -0
  33. package/resources/v1/events/data-export.mjs +3 -0
  34. package/resources/v1/events/data-export.mjs.map +1 -0
  35. package/resources/v1/events/events.d.mts +4 -0
  36. package/resources/v1/events/events.d.mts.map +1 -1
  37. package/resources/v1/events/events.d.ts +4 -0
  38. package/resources/v1/events/events.d.ts.map +1 -1
  39. package/resources/v1/events/events.js +4 -0
  40. package/resources/v1/events/events.js.map +1 -1
  41. package/resources/v1/events/events.mjs +4 -0
  42. package/resources/v1/events/events.mjs.map +1 -1
  43. package/resources/v1/events/index.d.mts +1 -0
  44. package/resources/v1/events/index.d.mts.map +1 -1
  45. package/resources/v1/events/index.d.ts +1 -0
  46. package/resources/v1/events/index.d.ts.map +1 -1
  47. package/resources/v1/events/index.js +3 -1
  48. package/resources/v1/events/index.js.map +1 -1
  49. package/resources/v1/events/index.mjs +1 -0
  50. package/resources/v1/events/index.mjs.map +1 -1
  51. package/resources/v1/subscriptions/subscriptions.d.mts +8 -0
  52. package/resources/v1/subscriptions/subscriptions.d.mts.map +1 -1
  53. package/resources/v1/subscriptions/subscriptions.d.ts +8 -0
  54. package/resources/v1/subscriptions/subscriptions.d.ts.map +1 -1
  55. package/resources/v1/subscriptions/subscriptions.js.map +1 -1
  56. package/resources/v1/subscriptions/subscriptions.mjs.map +1 -1
  57. package/src/resources/v1/events/data-export/data-export.ts +170 -0
  58. package/src/resources/v1/events/data-export/destinations.ts +149 -0
  59. package/src/resources/v1/events/data-export/index.ts +15 -0
  60. package/src/resources/v1/events/data-export.ts +3 -0
  61. package/src/resources/v1/events/events.ts +18 -0
  62. package/src/resources/v1/events/index.ts +7 -0
  63. package/src/resources/v1/subscriptions/subscriptions.ts +10 -0
  64. package/src/version.ts +1 -1
  65. package/version.d.mts +1 -1
  66. package/version.d.ts +1 -1
  67. package/version.js +1 -1
  68. package/version.mjs +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-beta.19 (2026-06-07)
4
+
5
+ Full Changelog: [v0.1.0-beta.18...v0.1.0-beta.19](https://github.com/stiggio/stigg-typescript/compare/v0.1.0-beta.18...v0.1.0-beta.19)
6
+
7
+ ### Features
8
+
9
+ * **api:** add cancellationDate parameter to subscriptions provision/update methods ([62716a5](https://github.com/stiggio/stigg-typescript/commit/62716a5f01d2ad39ec774f1dbd161f601df31805))
10
+
11
+ ## 0.1.0-beta.18 (2026-06-04)
12
+
13
+ Full Changelog: [v0.1.0-beta.17...v0.1.0-beta.18](https://github.com/stiggio/stigg-typescript/compare/v0.1.0-beta.17...v0.1.0-beta.18)
14
+
15
+ ### Features
16
+
17
+ * **api:** add mintScopedToken/triggerSync/destinations to events.dataExport ([a25cc96](https://github.com/stiggio/stigg-typescript/commit/a25cc96df65cf1fcc750fc1451101113c4a72dab))
18
+
3
19
  ## 0.1.0-beta.17 (2026-06-04)
4
20
 
5
21
  Full Changelog: [v0.1.0-beta.16...v0.1.0-beta.17](https://github.com/stiggio/stigg-typescript/compare/v0.1.0-beta.16...v0.1.0-beta.17)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stigg/typescript",
3
- "version": "0.1.0-beta.17",
3
+ "version": "0.1.0-beta.19",
4
4
  "description": "The official TypeScript library for the Stigg API",
5
5
  "author": "Stigg <>",
6
6
  "types": "./index.d.ts",
@@ -0,0 +1,126 @@
1
+ import { APIResource } from "../../../../core/resource.mjs";
2
+ import * as DestinationsAPI from "./destinations.mjs";
3
+ import { DestinationCreateParams, DestinationCreateResponse, DestinationDeleteResponse, Destinations } from "./destinations.mjs";
4
+ import { APIPromise } from "../../../../core/api-promise.mjs";
5
+ import { RequestOptions } from "../../../../internal/request-options.mjs";
6
+ export declare class DataExport extends APIResource {
7
+ destinations: DestinationsAPI.Destinations;
8
+ /**
9
+ * Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
10
+ * integration if needed.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * const response =
15
+ * await client.v1.events.dataExport.mintScopedToken({
16
+ * applicationOrigin: 'x',
17
+ * });
18
+ * ```
19
+ */
20
+ mintScopedToken(body: DataExportMintScopedTokenParams, options?: RequestOptions): APIPromise<DataExportMintScopedTokenResponse>;
21
+ /**
22
+ * Trigger a sync for one destination or all destinations under the provider
23
+ * entity.
24
+ *
25
+ * @example
26
+ * ```ts
27
+ * const response =
28
+ * await client.v1.events.dataExport.triggerSync();
29
+ * ```
30
+ */
31
+ triggerSync(body: DataExportTriggerSyncParams, options?: RequestOptions): APIPromise<DataExportTriggerSyncResponse>;
32
+ }
33
+ /**
34
+ * Response object
35
+ */
36
+ export interface DataExportMintScopedTokenResponse {
37
+ /**
38
+ * Scoped token + expiry + provider-specific metadata for the FE SDK.
39
+ */
40
+ data: DataExportMintScopedTokenResponse.Data;
41
+ }
42
+ export declare namespace DataExportMintScopedTokenResponse {
43
+ /**
44
+ * Scoped token + expiry + provider-specific metadata for the FE SDK.
45
+ */
46
+ interface Data {
47
+ /**
48
+ * Provider scoped JWT
49
+ */
50
+ token: string;
51
+ /**
52
+ * ISO8601 token expiry
53
+ */
54
+ expiresAt: string;
55
+ /**
56
+ * Provider-specific extras the FE embedded SDK needs
57
+ */
58
+ providerMetadata: {
59
+ [key: string]: unknown;
60
+ };
61
+ }
62
+ }
63
+ /**
64
+ * Response object
65
+ */
66
+ export interface DataExportTriggerSyncResponse {
67
+ /**
68
+ * Per-destination trigger results across the batch.
69
+ */
70
+ data: DataExportTriggerSyncResponse.Data;
71
+ }
72
+ export declare namespace DataExportTriggerSyncResponse {
73
+ /**
74
+ * Per-destination trigger results across the batch.
75
+ */
76
+ interface Data {
77
+ /**
78
+ * Per-destination trigger results
79
+ */
80
+ results: Array<Data.Result>;
81
+ }
82
+ namespace Data {
83
+ /**
84
+ * Per-destination trigger results.
85
+ */
86
+ interface Result {
87
+ /**
88
+ * Provider destination ID
89
+ */
90
+ destinationId: string;
91
+ /**
92
+ * True if a transfer was kicked
93
+ */
94
+ triggered: boolean;
95
+ /**
96
+ * Error message if triggered=false on a hard failure
97
+ */
98
+ errorMessage?: string;
99
+ /**
100
+ * Provider-side transfer ID
101
+ */
102
+ transferId?: string;
103
+ }
104
+ }
105
+ }
106
+ export interface DataExportMintScopedTokenParams {
107
+ /**
108
+ * FE origin the resulting JWT is bound to (provider-side anti-fraud)
109
+ */
110
+ applicationOrigin: string;
111
+ /**
112
+ * Pin the token to a specific warehouse connect flow
113
+ */
114
+ destinationType?: string;
115
+ }
116
+ export interface DataExportTriggerSyncParams {
117
+ /**
118
+ * Provider destination ID to sync. Omit to sync all destinations.
119
+ */
120
+ destinationId?: string;
121
+ }
122
+ export declare namespace DataExport {
123
+ export { type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
124
+ export { Destinations as Destinations, type DestinationCreateResponse as DestinationCreateResponse, type DestinationDeleteResponse as DestinationDeleteResponse, type DestinationCreateParams as DestinationCreateParams, };
125
+ }
126
+ //# sourceMappingURL=data-export.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-export.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/data-export.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,sCAAkC;AACxD,OAAO,KAAK,eAAe,2BAAuB;AAClD,OAAO,EACL,uBAAuB,EACvB,yBAAyB,EACzB,yBAAyB,EACzB,YAAY,EACb,2BAAuB;AACxB,OAAO,EAAE,UAAU,EAAE,yCAAqC;AAC1D,OAAO,EAAE,cAAc,EAAE,iDAA6C;AAEtE,qBAAa,UAAW,SAAQ,WAAW;IACzC,YAAY,EAAE,eAAe,CAAC,YAAY,CAAkD;IAE5F;;;;;;;;;;;OAWG;IACH,eAAe,CACb,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iCAAiC,CAAC;IAIhD;;;;;;;;;OASG;IACH,WAAW,CACT,IAAI,EAAE,2BAA2B,EACjC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,6BAA6B,CAAC;CAG7C;AAED;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAChD;;OAEG;IACH,IAAI,EAAE,iCAAiC,CAAC,IAAI,CAAC;CAC9C;AAED,yBAAiB,iCAAiC,CAAC;IACjD;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QAEd;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,gBAAgB,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;KAC9C;CACF;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C;;OAEG;IACH,IAAI,EAAE,6BAA6B,CAAC,IAAI,CAAC;CAC1C;AAED,yBAAiB,6BAA6B,CAAC;IAC7C;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC7B;IAED,UAAiB,IAAI,CAAC;QACpB;;WAEG;QACH,UAAiB,MAAM;YACrB;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,SAAS,EAAE,OAAO,CAAC;YAEnB;;eAEG;YACH,YAAY,CAAC,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,UAAU,CAAC,EAAE,MAAM,CAAC;SACrB;KACF;CACF;AAED,MAAM,WAAW,+BAA+B;IAC9C;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,2BAA2B;IAC1C;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAID,MAAM,CAAC,OAAO,WAAW,UAAU,CAAC;IAClC,OAAO,EACL,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;IAEF,OAAO,EACL,YAAY,IAAI,YAAY,EAC5B,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}
@@ -0,0 +1,126 @@
1
+ import { APIResource } from "../../../../core/resource.js";
2
+ import * as DestinationsAPI from "./destinations.js";
3
+ import { DestinationCreateParams, DestinationCreateResponse, DestinationDeleteResponse, Destinations } from "./destinations.js";
4
+ import { APIPromise } from "../../../../core/api-promise.js";
5
+ import { RequestOptions } from "../../../../internal/request-options.js";
6
+ export declare class DataExport extends APIResource {
7
+ destinations: DestinationsAPI.Destinations;
8
+ /**
9
+ * Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
10
+ * integration if needed.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * const response =
15
+ * await client.v1.events.dataExport.mintScopedToken({
16
+ * applicationOrigin: 'x',
17
+ * });
18
+ * ```
19
+ */
20
+ mintScopedToken(body: DataExportMintScopedTokenParams, options?: RequestOptions): APIPromise<DataExportMintScopedTokenResponse>;
21
+ /**
22
+ * Trigger a sync for one destination or all destinations under the provider
23
+ * entity.
24
+ *
25
+ * @example
26
+ * ```ts
27
+ * const response =
28
+ * await client.v1.events.dataExport.triggerSync();
29
+ * ```
30
+ */
31
+ triggerSync(body: DataExportTriggerSyncParams, options?: RequestOptions): APIPromise<DataExportTriggerSyncResponse>;
32
+ }
33
+ /**
34
+ * Response object
35
+ */
36
+ export interface DataExportMintScopedTokenResponse {
37
+ /**
38
+ * Scoped token + expiry + provider-specific metadata for the FE SDK.
39
+ */
40
+ data: DataExportMintScopedTokenResponse.Data;
41
+ }
42
+ export declare namespace DataExportMintScopedTokenResponse {
43
+ /**
44
+ * Scoped token + expiry + provider-specific metadata for the FE SDK.
45
+ */
46
+ interface Data {
47
+ /**
48
+ * Provider scoped JWT
49
+ */
50
+ token: string;
51
+ /**
52
+ * ISO8601 token expiry
53
+ */
54
+ expiresAt: string;
55
+ /**
56
+ * Provider-specific extras the FE embedded SDK needs
57
+ */
58
+ providerMetadata: {
59
+ [key: string]: unknown;
60
+ };
61
+ }
62
+ }
63
+ /**
64
+ * Response object
65
+ */
66
+ export interface DataExportTriggerSyncResponse {
67
+ /**
68
+ * Per-destination trigger results across the batch.
69
+ */
70
+ data: DataExportTriggerSyncResponse.Data;
71
+ }
72
+ export declare namespace DataExportTriggerSyncResponse {
73
+ /**
74
+ * Per-destination trigger results across the batch.
75
+ */
76
+ interface Data {
77
+ /**
78
+ * Per-destination trigger results
79
+ */
80
+ results: Array<Data.Result>;
81
+ }
82
+ namespace Data {
83
+ /**
84
+ * Per-destination trigger results.
85
+ */
86
+ interface Result {
87
+ /**
88
+ * Provider destination ID
89
+ */
90
+ destinationId: string;
91
+ /**
92
+ * True if a transfer was kicked
93
+ */
94
+ triggered: boolean;
95
+ /**
96
+ * Error message if triggered=false on a hard failure
97
+ */
98
+ errorMessage?: string;
99
+ /**
100
+ * Provider-side transfer ID
101
+ */
102
+ transferId?: string;
103
+ }
104
+ }
105
+ }
106
+ export interface DataExportMintScopedTokenParams {
107
+ /**
108
+ * FE origin the resulting JWT is bound to (provider-side anti-fraud)
109
+ */
110
+ applicationOrigin: string;
111
+ /**
112
+ * Pin the token to a specific warehouse connect flow
113
+ */
114
+ destinationType?: string;
115
+ }
116
+ export interface DataExportTriggerSyncParams {
117
+ /**
118
+ * Provider destination ID to sync. Omit to sync all destinations.
119
+ */
120
+ destinationId?: string;
121
+ }
122
+ export declare namespace DataExport {
123
+ export { type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
124
+ export { Destinations as Destinations, type DestinationCreateResponse as DestinationCreateResponse, type DestinationDeleteResponse as DestinationDeleteResponse, type DestinationCreateParams as DestinationCreateParams, };
125
+ }
126
+ //# sourceMappingURL=data-export.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-export.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/data-export.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,qCAAkC;AACxD,OAAO,KAAK,eAAe,0BAAuB;AAClD,OAAO,EACL,uBAAuB,EACvB,yBAAyB,EACzB,yBAAyB,EACzB,YAAY,EACb,0BAAuB;AACxB,OAAO,EAAE,UAAU,EAAE,wCAAqC;AAC1D,OAAO,EAAE,cAAc,EAAE,gDAA6C;AAEtE,qBAAa,UAAW,SAAQ,WAAW;IACzC,YAAY,EAAE,eAAe,CAAC,YAAY,CAAkD;IAE5F;;;;;;;;;;;OAWG;IACH,eAAe,CACb,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iCAAiC,CAAC;IAIhD;;;;;;;;;OASG;IACH,WAAW,CACT,IAAI,EAAE,2BAA2B,EACjC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,6BAA6B,CAAC;CAG7C;AAED;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAChD;;OAEG;IACH,IAAI,EAAE,iCAAiC,CAAC,IAAI,CAAC;CAC9C;AAED,yBAAiB,iCAAiC,CAAC;IACjD;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QAEd;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,gBAAgB,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;KAC9C;CACF;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C;;OAEG;IACH,IAAI,EAAE,6BAA6B,CAAC,IAAI,CAAC;CAC1C;AAED,yBAAiB,6BAA6B,CAAC;IAC7C;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC7B;IAED,UAAiB,IAAI,CAAC;QACpB;;WAEG;QACH,UAAiB,MAAM;YACrB;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,SAAS,EAAE,OAAO,CAAC;YAEnB;;eAEG;YACH,YAAY,CAAC,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,UAAU,CAAC,EAAE,MAAM,CAAC;SACrB;KACF;CACF;AAED,MAAM,WAAW,+BAA+B;IAC9C;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,2BAA2B;IAC1C;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAID,MAAM,CAAC,OAAO,WAAW,UAAU,CAAC;IAClC,OAAO,EACL,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;IAEF,OAAO,EACL,YAAY,IAAI,YAAY,EAC5B,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.DataExport = void 0;
5
+ const tslib_1 = require("../../../../internal/tslib.js");
6
+ const resource_1 = require("../../../../core/resource.js");
7
+ const DestinationsAPI = tslib_1.__importStar(require("./destinations.js"));
8
+ const destinations_1 = require("./destinations.js");
9
+ class DataExport extends resource_1.APIResource {
10
+ constructor() {
11
+ super(...arguments);
12
+ this.destinations = new DestinationsAPI.Destinations(this._client);
13
+ }
14
+ /**
15
+ * Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
16
+ * integration if needed.
17
+ *
18
+ * @example
19
+ * ```ts
20
+ * const response =
21
+ * await client.v1.events.dataExport.mintScopedToken({
22
+ * applicationOrigin: 'x',
23
+ * });
24
+ * ```
25
+ */
26
+ mintScopedToken(body, options) {
27
+ return this._client.post('/api/v1/data-export/scoped-token', { body, ...options });
28
+ }
29
+ /**
30
+ * Trigger a sync for one destination or all destinations under the provider
31
+ * entity.
32
+ *
33
+ * @example
34
+ * ```ts
35
+ * const response =
36
+ * await client.v1.events.dataExport.triggerSync();
37
+ * ```
38
+ */
39
+ triggerSync(body, options) {
40
+ return this._client.post('/api/v1/data-export/sync', { body, ...options });
41
+ }
42
+ }
43
+ exports.DataExport = DataExport;
44
+ DataExport.Destinations = destinations_1.Destinations;
45
+ //# sourceMappingURL=data-export.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-export.js","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/data-export.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,2DAAwD;AACxD,2EAAkD;AAClD,oDAKwB;AAIxB,MAAa,UAAW,SAAQ,sBAAW;IAA3C;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAqC9F,CAAC;IAnCC;;;;;;;;;;;OAWG;IACH,eAAe,CACb,IAAqC,EACrC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kCAAkC,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrF,CAAC;IAED;;;;;;;;;OASG;IACH,WAAW,CACT,IAAiC,EACjC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,0BAA0B,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7E,CAAC;CACF;AAtCD,gCAsCC;AAsGD,UAAU,CAAC,YAAY,GAAG,2BAAY,CAAC"}
@@ -0,0 +1,40 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ import { APIResource } from "../../../../core/resource.mjs";
3
+ import * as DestinationsAPI from "./destinations.mjs";
4
+ import { Destinations, } from "./destinations.mjs";
5
+ export class DataExport extends APIResource {
6
+ constructor() {
7
+ super(...arguments);
8
+ this.destinations = new DestinationsAPI.Destinations(this._client);
9
+ }
10
+ /**
11
+ * Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
12
+ * integration if needed.
13
+ *
14
+ * @example
15
+ * ```ts
16
+ * const response =
17
+ * await client.v1.events.dataExport.mintScopedToken({
18
+ * applicationOrigin: 'x',
19
+ * });
20
+ * ```
21
+ */
22
+ mintScopedToken(body, options) {
23
+ return this._client.post('/api/v1/data-export/scoped-token', { body, ...options });
24
+ }
25
+ /**
26
+ * Trigger a sync for one destination or all destinations under the provider
27
+ * entity.
28
+ *
29
+ * @example
30
+ * ```ts
31
+ * const response =
32
+ * await client.v1.events.dataExport.triggerSync();
33
+ * ```
34
+ */
35
+ triggerSync(body, options) {
36
+ return this._client.post('/api/v1/data-export/sync', { body, ...options });
37
+ }
38
+ }
39
+ DataExport.Destinations = Destinations;
40
+ //# sourceMappingURL=data-export.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-export.mjs","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/data-export.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,sCAAkC;AACxD,OAAO,KAAK,eAAe,2BAAuB;AAClD,OAAO,EAIL,YAAY,GACb,2BAAuB;AAIxB,MAAM,OAAO,UAAW,SAAQ,WAAW;IAA3C;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAqC9F,CAAC;IAnCC;;;;;;;;;;;OAWG;IACH,eAAe,CACb,IAAqC,EACrC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kCAAkC,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrF,CAAC;IAED;;;;;;;;;OASG;IACH,WAAW,CACT,IAAiC,EACjC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,0BAA0B,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7E,CAAC;CACF;AAsGD,UAAU,CAAC,YAAY,GAAG,YAAY,CAAC"}
@@ -0,0 +1,124 @@
1
+ import { APIResource } from "../../../../core/resource.mjs";
2
+ import { APIPromise } from "../../../../core/api-promise.mjs";
3
+ import { RequestOptions } from "../../../../internal/request-options.mjs";
4
+ export declare class Destinations extends APIResource {
5
+ /**
6
+ * Register a destination on the environment's DATA_EXPORT integration.
7
+ * Lazy-creates the integration row + provider recipient on first call. Idempotent
8
+ * on destinationId.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const destination =
13
+ * await client.v1.events.dataExport.destinations.create({
14
+ * destinationId: 'x',
15
+ * destinationType: 'x',
16
+ * });
17
+ * ```
18
+ */
19
+ create(body: DestinationCreateParams, options?: RequestOptions): APIPromise<DestinationCreateResponse>;
20
+ /**
21
+ * Remove a destination from the DATA_EXPORT integration metadata. Idempotent.
22
+ *
23
+ * @example
24
+ * ```ts
25
+ * const destination =
26
+ * await client.v1.events.dataExport.destinations.delete(
27
+ * 'x',
28
+ * );
29
+ * ```
30
+ */
31
+ delete(destinationID: string, options?: RequestOptions): APIPromise<DestinationDeleteResponse>;
32
+ }
33
+ /**
34
+ * Response object
35
+ */
36
+ export interface DestinationCreateResponse {
37
+ /**
38
+ * Current destinations under the DATA_EXPORT integration.
39
+ */
40
+ data: DestinationCreateResponse.Data;
41
+ }
42
+ export declare namespace DestinationCreateResponse {
43
+ /**
44
+ * Current destinations under the DATA_EXPORT integration.
45
+ */
46
+ interface Data {
47
+ /**
48
+ * Current destinations under the DATA_EXPORT integration
49
+ */
50
+ destinations: Array<Data.Destination>;
51
+ }
52
+ namespace Data {
53
+ /**
54
+ * A single destination entry under the DATA_EXPORT integration.
55
+ */
56
+ interface Destination {
57
+ /**
58
+ * ISO8601 timestamp of when the destination was connected
59
+ */
60
+ connectedAt: string;
61
+ /**
62
+ * Provider destination ID
63
+ */
64
+ destinationId: string;
65
+ /**
66
+ * Destination type (snowflake, bigquery, ...)
67
+ */
68
+ type: string;
69
+ }
70
+ }
71
+ }
72
+ /**
73
+ * Response object
74
+ */
75
+ export interface DestinationDeleteResponse {
76
+ /**
77
+ * Current destinations under the DATA_EXPORT integration.
78
+ */
79
+ data: DestinationDeleteResponse.Data;
80
+ }
81
+ export declare namespace DestinationDeleteResponse {
82
+ /**
83
+ * Current destinations under the DATA_EXPORT integration.
84
+ */
85
+ interface Data {
86
+ /**
87
+ * Current destinations under the DATA_EXPORT integration
88
+ */
89
+ destinations: Array<Data.Destination>;
90
+ }
91
+ namespace Data {
92
+ /**
93
+ * A single destination entry under the DATA_EXPORT integration.
94
+ */
95
+ interface Destination {
96
+ /**
97
+ * ISO8601 timestamp of when the destination was connected
98
+ */
99
+ connectedAt: string;
100
+ /**
101
+ * Provider destination ID
102
+ */
103
+ destinationId: string;
104
+ /**
105
+ * Destination type (snowflake, bigquery, ...)
106
+ */
107
+ type: string;
108
+ }
109
+ }
110
+ }
111
+ export interface DestinationCreateParams {
112
+ /**
113
+ * The provider destination ID returned by the embedded SDK on connect
114
+ */
115
+ destinationId: string;
116
+ /**
117
+ * The destination type (e.g. snowflake, bigquery)
118
+ */
119
+ destinationType: string;
120
+ }
121
+ export declare namespace Destinations {
122
+ export { type DestinationCreateResponse as DestinationCreateResponse, type DestinationDeleteResponse as DestinationDeleteResponse, type DestinationCreateParams as DestinationCreateParams, };
123
+ }
124
+ //# sourceMappingURL=destinations.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"destinations.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/destinations.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,sCAAkC;AACxD,OAAO,EAAE,UAAU,EAAE,yCAAqC;AAC1D,OAAO,EAAE,cAAc,EAAE,iDAA6C;AAGtE,qBAAa,YAAa,SAAQ,WAAW;IAC3C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAI,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;IAItG;;;;;;;;;;OAUG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;CAG/F;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,IAAI,EAAE,yBAAyB,CAAC,IAAI,CAAC;CACtC;AAED,yBAAiB,yBAAyB,CAAC;IACzC;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,YAAY,EAAE,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KACvC;IAED,UAAiB,IAAI,CAAC;QACpB;;WAEG;QACH,UAAiB,WAAW;YAC1B;;eAEG;YACH,WAAW,EAAE,MAAM,CAAC;YAEpB;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;SACd;KACF;CACF;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,IAAI,EAAE,yBAAyB,CAAC,IAAI,CAAC;CACtC;AAED,yBAAiB,yBAAyB,CAAC;IACzC;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,YAAY,EAAE,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KACvC;IAED,UAAiB,IAAI,CAAC;QACpB;;WAEG;QACH,UAAiB,WAAW;YAC1B;;eAEG;YACH,WAAW,EAAE,MAAM,CAAC;YAEpB;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;SACd;KACF;CACF;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,WAAW,YAAY,CAAC;IACpC,OAAO,EACL,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}
@@ -0,0 +1,124 @@
1
+ import { APIResource } from "../../../../core/resource.js";
2
+ import { APIPromise } from "../../../../core/api-promise.js";
3
+ import { RequestOptions } from "../../../../internal/request-options.js";
4
+ export declare class Destinations extends APIResource {
5
+ /**
6
+ * Register a destination on the environment's DATA_EXPORT integration.
7
+ * Lazy-creates the integration row + provider recipient on first call. Idempotent
8
+ * on destinationId.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const destination =
13
+ * await client.v1.events.dataExport.destinations.create({
14
+ * destinationId: 'x',
15
+ * destinationType: 'x',
16
+ * });
17
+ * ```
18
+ */
19
+ create(body: DestinationCreateParams, options?: RequestOptions): APIPromise<DestinationCreateResponse>;
20
+ /**
21
+ * Remove a destination from the DATA_EXPORT integration metadata. Idempotent.
22
+ *
23
+ * @example
24
+ * ```ts
25
+ * const destination =
26
+ * await client.v1.events.dataExport.destinations.delete(
27
+ * 'x',
28
+ * );
29
+ * ```
30
+ */
31
+ delete(destinationID: string, options?: RequestOptions): APIPromise<DestinationDeleteResponse>;
32
+ }
33
+ /**
34
+ * Response object
35
+ */
36
+ export interface DestinationCreateResponse {
37
+ /**
38
+ * Current destinations under the DATA_EXPORT integration.
39
+ */
40
+ data: DestinationCreateResponse.Data;
41
+ }
42
+ export declare namespace DestinationCreateResponse {
43
+ /**
44
+ * Current destinations under the DATA_EXPORT integration.
45
+ */
46
+ interface Data {
47
+ /**
48
+ * Current destinations under the DATA_EXPORT integration
49
+ */
50
+ destinations: Array<Data.Destination>;
51
+ }
52
+ namespace Data {
53
+ /**
54
+ * A single destination entry under the DATA_EXPORT integration.
55
+ */
56
+ interface Destination {
57
+ /**
58
+ * ISO8601 timestamp of when the destination was connected
59
+ */
60
+ connectedAt: string;
61
+ /**
62
+ * Provider destination ID
63
+ */
64
+ destinationId: string;
65
+ /**
66
+ * Destination type (snowflake, bigquery, ...)
67
+ */
68
+ type: string;
69
+ }
70
+ }
71
+ }
72
+ /**
73
+ * Response object
74
+ */
75
+ export interface DestinationDeleteResponse {
76
+ /**
77
+ * Current destinations under the DATA_EXPORT integration.
78
+ */
79
+ data: DestinationDeleteResponse.Data;
80
+ }
81
+ export declare namespace DestinationDeleteResponse {
82
+ /**
83
+ * Current destinations under the DATA_EXPORT integration.
84
+ */
85
+ interface Data {
86
+ /**
87
+ * Current destinations under the DATA_EXPORT integration
88
+ */
89
+ destinations: Array<Data.Destination>;
90
+ }
91
+ namespace Data {
92
+ /**
93
+ * A single destination entry under the DATA_EXPORT integration.
94
+ */
95
+ interface Destination {
96
+ /**
97
+ * ISO8601 timestamp of when the destination was connected
98
+ */
99
+ connectedAt: string;
100
+ /**
101
+ * Provider destination ID
102
+ */
103
+ destinationId: string;
104
+ /**
105
+ * Destination type (snowflake, bigquery, ...)
106
+ */
107
+ type: string;
108
+ }
109
+ }
110
+ }
111
+ export interface DestinationCreateParams {
112
+ /**
113
+ * The provider destination ID returned by the embedded SDK on connect
114
+ */
115
+ destinationId: string;
116
+ /**
117
+ * The destination type (e.g. snowflake, bigquery)
118
+ */
119
+ destinationType: string;
120
+ }
121
+ export declare namespace Destinations {
122
+ export { type DestinationCreateResponse as DestinationCreateResponse, type DestinationDeleteResponse as DestinationDeleteResponse, type DestinationCreateParams as DestinationCreateParams, };
123
+ }
124
+ //# sourceMappingURL=destinations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"destinations.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/destinations.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,qCAAkC;AACxD,OAAO,EAAE,UAAU,EAAE,wCAAqC;AAC1D,OAAO,EAAE,cAAc,EAAE,gDAA6C;AAGtE,qBAAa,YAAa,SAAQ,WAAW;IAC3C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAI,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;IAItG;;;;;;;;;;OAUG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;CAG/F;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,IAAI,EAAE,yBAAyB,CAAC,IAAI,CAAC;CACtC;AAED,yBAAiB,yBAAyB,CAAC;IACzC;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,YAAY,EAAE,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KACvC;IAED,UAAiB,IAAI,CAAC;QACpB;;WAEG;QACH,UAAiB,WAAW;YAC1B;;eAEG;YACH,WAAW,EAAE,MAAM,CAAC;YAEpB;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;SACd;KACF;CACF;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,IAAI,EAAE,yBAAyB,CAAC,IAAI,CAAC;CACtC;AAED,yBAAiB,yBAAyB,CAAC;IACzC;;OAEG;IACH,UAAiB,IAAI;QACnB;;WAEG;QACH,YAAY,EAAE,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KACvC;IAED,UAAiB,IAAI,CAAC;QACpB;;WAEG;QACH,UAAiB,WAAW;YAC1B;;eAEG;YACH,WAAW,EAAE,MAAM,CAAC;YAEpB;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;SACd;KACF;CACF;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,WAAW,YAAY,CAAC;IACpC,OAAO,EACL,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}