@stigg/typescript 0.1.0-beta.27 → 0.1.0-beta.28
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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/v1/events/data-export/data-export.d.mts +78 -1
- package/resources/v1/events/data-export/data-export.d.mts.map +1 -1
- package/resources/v1/events/data-export/data-export.d.ts +78 -1
- package/resources/v1/events/data-export/data-export.d.ts.map +1 -1
- package/resources/v1/events/data-export/data-export.js +17 -0
- package/resources/v1/events/data-export/data-export.js.map +1 -1
- package/resources/v1/events/data-export/data-export.mjs +17 -0
- package/resources/v1/events/data-export/data-export.mjs.map +1 -1
- package/resources/v1/events/data-export/destinations.d.mts +6 -0
- package/resources/v1/events/data-export/destinations.d.mts.map +1 -1
- package/resources/v1/events/data-export/destinations.d.ts +6 -0
- package/resources/v1/events/data-export/destinations.d.ts.map +1 -1
- package/resources/v1/events/data-export/index.d.mts +1 -1
- package/resources/v1/events/data-export/index.d.mts.map +1 -1
- package/resources/v1/events/data-export/index.d.ts +1 -1
- package/resources/v1/events/data-export/index.d.ts.map +1 -1
- package/resources/v1/events/data-export/index.js.map +1 -1
- package/resources/v1/events/data-export/index.mjs.map +1 -1
- package/resources/v1/events/events.d.mts +2 -2
- package/resources/v1/events/events.d.mts.map +1 -1
- package/resources/v1/events/events.d.ts +2 -2
- package/resources/v1/events/events.d.ts.map +1 -1
- package/resources/v1/events/events.js.map +1 -1
- package/resources/v1/events/events.mjs.map +1 -1
- package/resources/v1/events/index.d.mts +1 -1
- package/resources/v1/events/index.d.mts.map +1 -1
- package/resources/v1/events/index.d.ts +1 -1
- package/resources/v1/events/index.d.ts.map +1 -1
- package/resources/v1/events/index.js.map +1 -1
- package/resources/v1/events/index.mjs.map +1 -1
- package/src/resources/v1/events/data-export/data-export.ts +105 -0
- package/src/resources/v1/events/data-export/destinations.ts +9 -0
- package/src/resources/v1/events/data-export/index.ts +2 -0
- package/src/resources/v1/events/events.ts +4 -0
- package/src/resources/v1/events/index.ts +2 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.28 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-beta.27...v0.1.0-beta.28](https://github.com/stiggio/stigg-typescript/compare/v0.1.0-beta.27...v0.1.0-beta.28)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** add listModels method, enabledModels param/field to data export ([5c35499](https://github.com/stiggio/stigg-typescript/commit/5c35499279b632f8d159e3a2011d7ae6be6cb1d7))
|
|
10
|
+
|
|
3
11
|
## 0.1.0-beta.27 (2026-06-21)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.1.0-beta.26...v0.1.0-beta.27](https://github.com/stiggio/stigg-typescript/compare/v0.1.0-beta.26...v0.1.0-beta.27)
|
package/package.json
CHANGED
|
@@ -5,6 +5,11 @@ import { APIPromise } from "../../../../core/api-promise.mjs";
|
|
|
5
5
|
import { RequestOptions } from "../../../../internal/request-options.mjs";
|
|
6
6
|
export declare class DataExport extends APIResource {
|
|
7
7
|
destinations: DestinationsAPI.Destinations;
|
|
8
|
+
/**
|
|
9
|
+
* List the catalog of data-export models the customer can opt into when connecting
|
|
10
|
+
* a destination.
|
|
11
|
+
*/
|
|
12
|
+
listModels(params?: DataExportListModelsParams | null | undefined, options?: RequestOptions): APIPromise<DataExportListModelsResponse>;
|
|
8
13
|
/**
|
|
9
14
|
* Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
|
|
10
15
|
* integration if needed.
|
|
@@ -16,6 +21,61 @@ export declare class DataExport extends APIResource {
|
|
|
16
21
|
*/
|
|
17
22
|
triggerSync(params: DataExportTriggerSyncParams, options?: RequestOptions): APIPromise<DataExportTriggerSyncResponse>;
|
|
18
23
|
}
|
|
24
|
+
/**
|
|
25
|
+
* Response object
|
|
26
|
+
*/
|
|
27
|
+
export interface DataExportListModelsResponse {
|
|
28
|
+
/**
|
|
29
|
+
* Grouped catalog of every data-export model a destination can opt into.
|
|
30
|
+
*/
|
|
31
|
+
data: DataExportListModelsResponse.Data;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace DataExportListModelsResponse {
|
|
34
|
+
/**
|
|
35
|
+
* Grouped catalog of every data-export model a destination can opt into.
|
|
36
|
+
*/
|
|
37
|
+
interface Data {
|
|
38
|
+
/**
|
|
39
|
+
* Groups of data-export models, in display order
|
|
40
|
+
*/
|
|
41
|
+
groups: Array<Data.Group>;
|
|
42
|
+
}
|
|
43
|
+
namespace Data {
|
|
44
|
+
/**
|
|
45
|
+
* A group of related data-export models, mirroring the public docs taxonomy.
|
|
46
|
+
*/
|
|
47
|
+
interface Group {
|
|
48
|
+
/**
|
|
49
|
+
* Stable group identifier
|
|
50
|
+
*/
|
|
51
|
+
id: string;
|
|
52
|
+
/**
|
|
53
|
+
* Customer-facing group label
|
|
54
|
+
*/
|
|
55
|
+
displayName: string;
|
|
56
|
+
/**
|
|
57
|
+
* Models in this group
|
|
58
|
+
*/
|
|
59
|
+
models: Array<Group.Model>;
|
|
60
|
+
}
|
|
61
|
+
namespace Group {
|
|
62
|
+
/**
|
|
63
|
+
* A single data-export model the customer can opt into.
|
|
64
|
+
*/
|
|
65
|
+
interface Model {
|
|
66
|
+
/**
|
|
67
|
+
* Wire identifier — what gets persisted on the destination and registered with the
|
|
68
|
+
* provider
|
|
69
|
+
*/
|
|
70
|
+
id: string;
|
|
71
|
+
/**
|
|
72
|
+
* Customer-facing label for the model
|
|
73
|
+
*/
|
|
74
|
+
displayName: string;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
19
79
|
/**
|
|
20
80
|
* Response object
|
|
21
81
|
*/
|
|
@@ -89,6 +149,19 @@ export declare namespace DataExportTriggerSyncResponse {
|
|
|
89
149
|
}
|
|
90
150
|
}
|
|
91
151
|
}
|
|
152
|
+
export interface DataExportListModelsParams {
|
|
153
|
+
/**
|
|
154
|
+
* Account ID — optional when authenticating with a user JWT (Bearer token); falls
|
|
155
|
+
* back to the user's first membership. Ignored for API-key auth.
|
|
156
|
+
*/
|
|
157
|
+
'X-ACCOUNT-ID'?: string;
|
|
158
|
+
/**
|
|
159
|
+
* Environment ID — required when authenticating with a user JWT (Bearer token) on
|
|
160
|
+
* environment-scoped endpoints. Ignored for API-key auth (env is intrinsic to the
|
|
161
|
+
* key).
|
|
162
|
+
*/
|
|
163
|
+
'X-ENVIRONMENT-ID'?: string;
|
|
164
|
+
}
|
|
92
165
|
export interface DataExportMintScopedTokenParams {
|
|
93
166
|
/**
|
|
94
167
|
* Body param: FE origin the resulting JWT is bound to (provider-side anti-fraud)
|
|
@@ -98,6 +171,10 @@ export interface DataExportMintScopedTokenParams {
|
|
|
98
171
|
* Body param: Pin the token to a specific warehouse connect flow
|
|
99
172
|
*/
|
|
100
173
|
destinationType?: string;
|
|
174
|
+
/**
|
|
175
|
+
* Body param
|
|
176
|
+
*/
|
|
177
|
+
enabledModels?: Array<string>;
|
|
101
178
|
/**
|
|
102
179
|
* Header param: Account ID — optional when authenticating with a user JWT (Bearer
|
|
103
180
|
* token); falls back to the user's first membership. Ignored for API-key auth.
|
|
@@ -128,7 +205,7 @@ export interface DataExportTriggerSyncParams {
|
|
|
128
205
|
'X-ENVIRONMENT-ID'?: string;
|
|
129
206
|
}
|
|
130
207
|
export declare namespace DataExport {
|
|
131
|
-
export { type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
208
|
+
export { type DataExportListModelsResponse as DataExportListModelsResponse, type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportListModelsParams as DataExportListModelsParams, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
132
209
|
export { Destinations as Destinations, type DestinationCreateResponse as DestinationCreateResponse, type DestinationDeleteResponse as DestinationDeleteResponse, type DestinationCreateParams as DestinationCreateParams, type DestinationDeleteParams as DestinationDeleteParams, };
|
|
133
210
|
}
|
|
134
211
|
//# sourceMappingURL=data-export.d.mts.map
|
|
@@ -1 +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,uBAAuB,EACvB,yBAAyB,EACzB,YAAY,EACb,2BAAuB;AACxB,OAAO,EAAE,UAAU,EAAE,yCAAqC;AAE1D,OAAO,EAAE,cAAc,EAAE,iDAA6C;AAEtE,qBAAa,UAAW,SAAQ,WAAW;IACzC,YAAY,EAAE,eAAe,CAAC,YAAY,CAAkD;IAE5F;;;OAGG;IACH,eAAe,CACb,MAAM,EAAE,+BAA+B,EACvC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iCAAiC,CAAC;IAehD;;;OAGG;IACH,WAAW,CACT,MAAM,EAAE,2BAA2B,EACnC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,6BAA6B,CAAC;CAc7C;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;IAEzB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,2BAA2B;IAC1C;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;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,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"data-export.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/data-export.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,11 @@ import { APIPromise } from "../../../../core/api-promise.js";
|
|
|
5
5
|
import { RequestOptions } from "../../../../internal/request-options.js";
|
|
6
6
|
export declare class DataExport extends APIResource {
|
|
7
7
|
destinations: DestinationsAPI.Destinations;
|
|
8
|
+
/**
|
|
9
|
+
* List the catalog of data-export models the customer can opt into when connecting
|
|
10
|
+
* a destination.
|
|
11
|
+
*/
|
|
12
|
+
listModels(params?: DataExportListModelsParams | null | undefined, options?: RequestOptions): APIPromise<DataExportListModelsResponse>;
|
|
8
13
|
/**
|
|
9
14
|
* Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
|
|
10
15
|
* integration if needed.
|
|
@@ -16,6 +21,61 @@ export declare class DataExport extends APIResource {
|
|
|
16
21
|
*/
|
|
17
22
|
triggerSync(params: DataExportTriggerSyncParams, options?: RequestOptions): APIPromise<DataExportTriggerSyncResponse>;
|
|
18
23
|
}
|
|
24
|
+
/**
|
|
25
|
+
* Response object
|
|
26
|
+
*/
|
|
27
|
+
export interface DataExportListModelsResponse {
|
|
28
|
+
/**
|
|
29
|
+
* Grouped catalog of every data-export model a destination can opt into.
|
|
30
|
+
*/
|
|
31
|
+
data: DataExportListModelsResponse.Data;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace DataExportListModelsResponse {
|
|
34
|
+
/**
|
|
35
|
+
* Grouped catalog of every data-export model a destination can opt into.
|
|
36
|
+
*/
|
|
37
|
+
interface Data {
|
|
38
|
+
/**
|
|
39
|
+
* Groups of data-export models, in display order
|
|
40
|
+
*/
|
|
41
|
+
groups: Array<Data.Group>;
|
|
42
|
+
}
|
|
43
|
+
namespace Data {
|
|
44
|
+
/**
|
|
45
|
+
* A group of related data-export models, mirroring the public docs taxonomy.
|
|
46
|
+
*/
|
|
47
|
+
interface Group {
|
|
48
|
+
/**
|
|
49
|
+
* Stable group identifier
|
|
50
|
+
*/
|
|
51
|
+
id: string;
|
|
52
|
+
/**
|
|
53
|
+
* Customer-facing group label
|
|
54
|
+
*/
|
|
55
|
+
displayName: string;
|
|
56
|
+
/**
|
|
57
|
+
* Models in this group
|
|
58
|
+
*/
|
|
59
|
+
models: Array<Group.Model>;
|
|
60
|
+
}
|
|
61
|
+
namespace Group {
|
|
62
|
+
/**
|
|
63
|
+
* A single data-export model the customer can opt into.
|
|
64
|
+
*/
|
|
65
|
+
interface Model {
|
|
66
|
+
/**
|
|
67
|
+
* Wire identifier — what gets persisted on the destination and registered with the
|
|
68
|
+
* provider
|
|
69
|
+
*/
|
|
70
|
+
id: string;
|
|
71
|
+
/**
|
|
72
|
+
* Customer-facing label for the model
|
|
73
|
+
*/
|
|
74
|
+
displayName: string;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
19
79
|
/**
|
|
20
80
|
* Response object
|
|
21
81
|
*/
|
|
@@ -89,6 +149,19 @@ export declare namespace DataExportTriggerSyncResponse {
|
|
|
89
149
|
}
|
|
90
150
|
}
|
|
91
151
|
}
|
|
152
|
+
export interface DataExportListModelsParams {
|
|
153
|
+
/**
|
|
154
|
+
* Account ID — optional when authenticating with a user JWT (Bearer token); falls
|
|
155
|
+
* back to the user's first membership. Ignored for API-key auth.
|
|
156
|
+
*/
|
|
157
|
+
'X-ACCOUNT-ID'?: string;
|
|
158
|
+
/**
|
|
159
|
+
* Environment ID — required when authenticating with a user JWT (Bearer token) on
|
|
160
|
+
* environment-scoped endpoints. Ignored for API-key auth (env is intrinsic to the
|
|
161
|
+
* key).
|
|
162
|
+
*/
|
|
163
|
+
'X-ENVIRONMENT-ID'?: string;
|
|
164
|
+
}
|
|
92
165
|
export interface DataExportMintScopedTokenParams {
|
|
93
166
|
/**
|
|
94
167
|
* Body param: FE origin the resulting JWT is bound to (provider-side anti-fraud)
|
|
@@ -98,6 +171,10 @@ export interface DataExportMintScopedTokenParams {
|
|
|
98
171
|
* Body param: Pin the token to a specific warehouse connect flow
|
|
99
172
|
*/
|
|
100
173
|
destinationType?: string;
|
|
174
|
+
/**
|
|
175
|
+
* Body param
|
|
176
|
+
*/
|
|
177
|
+
enabledModels?: Array<string>;
|
|
101
178
|
/**
|
|
102
179
|
* Header param: Account ID — optional when authenticating with a user JWT (Bearer
|
|
103
180
|
* token); falls back to the user's first membership. Ignored for API-key auth.
|
|
@@ -128,7 +205,7 @@ export interface DataExportTriggerSyncParams {
|
|
|
128
205
|
'X-ENVIRONMENT-ID'?: string;
|
|
129
206
|
}
|
|
130
207
|
export declare namespace DataExport {
|
|
131
|
-
export { type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
208
|
+
export { type DataExportListModelsResponse as DataExportListModelsResponse, type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportListModelsParams as DataExportListModelsParams, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
132
209
|
export { Destinations as Destinations, type DestinationCreateResponse as DestinationCreateResponse, type DestinationDeleteResponse as DestinationDeleteResponse, type DestinationCreateParams as DestinationCreateParams, type DestinationDeleteParams as DestinationDeleteParams, };
|
|
133
210
|
}
|
|
134
211
|
//# sourceMappingURL=data-export.d.ts.map
|
|
@@ -1 +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,uBAAuB,EACvB,yBAAyB,EACzB,YAAY,EACb,0BAAuB;AACxB,OAAO,EAAE,UAAU,EAAE,wCAAqC;AAE1D,OAAO,EAAE,cAAc,EAAE,gDAA6C;AAEtE,qBAAa,UAAW,SAAQ,WAAW;IACzC,YAAY,EAAE,eAAe,CAAC,YAAY,CAAkD;IAE5F;;;OAGG;IACH,eAAe,CACb,MAAM,EAAE,+BAA+B,EACvC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,iCAAiC,CAAC;IAehD;;;OAGG;IACH,WAAW,CACT,MAAM,EAAE,2BAA2B,EACnC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,6BAA6B,CAAC;CAc7C;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;IAEzB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,2BAA2B;IAC1C;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;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,EACvD,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"data-export.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/data-export.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,6 +12,23 @@ class DataExport extends resource_1.APIResource {
|
|
|
12
12
|
super(...arguments);
|
|
13
13
|
this.destinations = new DestinationsAPI.Destinations(this._client);
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* List the catalog of data-export models the customer can opt into when connecting
|
|
17
|
+
* a destination.
|
|
18
|
+
*/
|
|
19
|
+
listModels(params = {}, options) {
|
|
20
|
+
const { 'X-ACCOUNT-ID': xAccountID, 'X-ENVIRONMENT-ID': xEnvironmentID } = params ?? {};
|
|
21
|
+
return this._client.get('/api/v1/data-export/models', {
|
|
22
|
+
...options,
|
|
23
|
+
headers: (0, headers_1.buildHeaders)([
|
|
24
|
+
{
|
|
25
|
+
...(xAccountID != null ? { 'X-ACCOUNT-ID': xAccountID } : undefined),
|
|
26
|
+
...(xEnvironmentID != null ? { 'X-ENVIRONMENT-ID': xEnvironmentID } : undefined),
|
|
27
|
+
},
|
|
28
|
+
options?.headers,
|
|
29
|
+
]),
|
|
30
|
+
});
|
|
31
|
+
}
|
|
15
32
|
/**
|
|
16
33
|
* Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
|
|
17
34
|
* integration if needed.
|
|
@@ -1 +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,oDAMwB;AAExB,6DAA4D;AAG5D,MAAa,UAAW,SAAQ,sBAAW;IAA3C;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;
|
|
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,oDAMwB;AAExB,6DAA4D;AAG5D,MAAa,UAAW,SAAQ,sBAAW;IAA3C;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAkE9F,CAAC;IAhEC;;;OAGG;IACH,UAAU,CACR,SAAwD,EAAE,EAC1D,OAAwB;QAExB,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,MAAM,IAAI,EAAE,CAAC;QACxF,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,4BAA4B,EAAE;YACpD,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,eAAe,CACb,MAAuC,EACvC,OAAwB;QAExB,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC3F,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kCAAkC,EAAE;YAC3D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,WAAW,CACT,MAAmC,EACnC,OAAwB;QAExB,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC3F,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,0BAA0B,EAAE;YACnD,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;CACF;AAnED,gCAmEC;AAkND,UAAU,CAAC,YAAY,GAAG,2BAAY,CAAC"}
|
|
@@ -8,6 +8,23 @@ export class DataExport extends APIResource {
|
|
|
8
8
|
super(...arguments);
|
|
9
9
|
this.destinations = new DestinationsAPI.Destinations(this._client);
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* List the catalog of data-export models the customer can opt into when connecting
|
|
13
|
+
* a destination.
|
|
14
|
+
*/
|
|
15
|
+
listModels(params = {}, options) {
|
|
16
|
+
const { 'X-ACCOUNT-ID': xAccountID, 'X-ENVIRONMENT-ID': xEnvironmentID } = params ?? {};
|
|
17
|
+
return this._client.get('/api/v1/data-export/models', {
|
|
18
|
+
...options,
|
|
19
|
+
headers: buildHeaders([
|
|
20
|
+
{
|
|
21
|
+
...(xAccountID != null ? { 'X-ACCOUNT-ID': xAccountID } : undefined),
|
|
22
|
+
...(xEnvironmentID != null ? { 'X-ENVIRONMENT-ID': xEnvironmentID } : undefined),
|
|
23
|
+
},
|
|
24
|
+
options?.headers,
|
|
25
|
+
]),
|
|
26
|
+
});
|
|
27
|
+
}
|
|
11
28
|
/**
|
|
12
29
|
* Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
|
|
13
30
|
* integration if needed.
|
|
@@ -1 +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,EAKL,YAAY,GACb,2BAAuB;AAExB,OAAO,EAAE,YAAY,EAAE,yCAAqC;AAG5D,MAAM,OAAO,UAAW,SAAQ,WAAW;IAA3C;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;
|
|
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,EAKL,YAAY,GACb,2BAAuB;AAExB,OAAO,EAAE,YAAY,EAAE,yCAAqC;AAG5D,MAAM,OAAO,UAAW,SAAQ,WAAW;IAA3C;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAkE9F,CAAC;IAhEC;;;OAGG;IACH,UAAU,CACR,SAAwD,EAAE,EAC1D,OAAwB;QAExB,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,MAAM,IAAI,EAAE,CAAC;QACxF,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,4BAA4B,EAAE;YACpD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,eAAe,CACb,MAAuC,EACvC,OAAwB;QAExB,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC3F,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kCAAkC,EAAE;YAC3D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,WAAW,CACT,MAAmC,EACnC,OAAwB;QAExB,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC3F,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,0BAA0B,EAAE;YACnD,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;CACF;AAkND,UAAU,CAAC,YAAY,GAAG,YAAY,CAAC"}
|
|
@@ -53,6 +53,7 @@ export declare namespace DestinationCreateResponse {
|
|
|
53
53
|
* Connection status of the destination (connected, failed)
|
|
54
54
|
*/
|
|
55
55
|
connectionStatus?: string;
|
|
56
|
+
enabledModels?: Array<string>;
|
|
56
57
|
/**
|
|
57
58
|
* Latest sync snapshot for the destination, refreshed by the provider webhook
|
|
58
59
|
*/
|
|
@@ -131,6 +132,7 @@ export declare namespace DestinationDeleteResponse {
|
|
|
131
132
|
* Connection status of the destination (connected, failed)
|
|
132
133
|
*/
|
|
133
134
|
connectionStatus?: string;
|
|
135
|
+
enabledModels?: Array<string>;
|
|
134
136
|
/**
|
|
135
137
|
* Latest sync snapshot for the destination, refreshed by the provider webhook
|
|
136
138
|
*/
|
|
@@ -178,6 +180,10 @@ export interface DestinationCreateParams {
|
|
|
178
180
|
* Body param: The destination type (e.g. snowflake, bigquery)
|
|
179
181
|
*/
|
|
180
182
|
destinationType: string;
|
|
183
|
+
/**
|
|
184
|
+
* Body param
|
|
185
|
+
*/
|
|
186
|
+
enabledModels?: Array<string>;
|
|
181
187
|
/**
|
|
182
188
|
* Header param: Account ID — optional when authenticating with a user JWT (Bearer
|
|
183
189
|
* token); falls back to the user's first membership. Ignored for API-key auth.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"destinations.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/destinations.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"destinations.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/destinations.ts"],"names":[],"mappings":"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"}
|
|
@@ -53,6 +53,7 @@ export declare namespace DestinationCreateResponse {
|
|
|
53
53
|
* Connection status of the destination (connected, failed)
|
|
54
54
|
*/
|
|
55
55
|
connectionStatus?: string;
|
|
56
|
+
enabledModels?: Array<string>;
|
|
56
57
|
/**
|
|
57
58
|
* Latest sync snapshot for the destination, refreshed by the provider webhook
|
|
58
59
|
*/
|
|
@@ -131,6 +132,7 @@ export declare namespace DestinationDeleteResponse {
|
|
|
131
132
|
* Connection status of the destination (connected, failed)
|
|
132
133
|
*/
|
|
133
134
|
connectionStatus?: string;
|
|
135
|
+
enabledModels?: Array<string>;
|
|
134
136
|
/**
|
|
135
137
|
* Latest sync snapshot for the destination, refreshed by the provider webhook
|
|
136
138
|
*/
|
|
@@ -178,6 +180,10 @@ export interface DestinationCreateParams {
|
|
|
178
180
|
* Body param: The destination type (e.g. snowflake, bigquery)
|
|
179
181
|
*/
|
|
180
182
|
destinationType: string;
|
|
183
|
+
/**
|
|
184
|
+
* Body param
|
|
185
|
+
*/
|
|
186
|
+
enabledModels?: Array<string>;
|
|
181
187
|
/**
|
|
182
188
|
* Header param: Account ID — optional when authenticating with a user JWT (Bearer
|
|
183
189
|
* token); falls back to the user's first membership. Ignored for API-key auth.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"destinations.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/destinations.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"destinations.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/destinations.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { DataExport, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export.mjs";
|
|
1
|
+
export { DataExport, type DataExportListModelsResponse, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportListModelsParams, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export.mjs";
|
|
2
2
|
export { Destinations, type DestinationCreateResponse, type DestinationDeleteResponse, type DestinationCreateParams, type DestinationDeleteParams, } from "./destinations.mjs";
|
|
3
3
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EACV,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,0BAAsB;AACvB,OAAO,EACL,YAAY,EACZ,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,2BAAuB"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EACV,KAAK,4BAA4B,EACjC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,0BAAsB;AACvB,OAAO,EACL,YAAY,EACZ,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,2BAAuB"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { DataExport, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export.js";
|
|
1
|
+
export { DataExport, type DataExportListModelsResponse, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportListModelsParams, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export.js";
|
|
2
2
|
export { Destinations, type DestinationCreateResponse, type DestinationDeleteResponse, type DestinationCreateParams, type DestinationDeleteParams, } from "./destinations.js";
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EACV,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,yBAAsB;AACvB,OAAO,EACL,YAAY,EACZ,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,0BAAuB"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EACV,KAAK,4BAA4B,EACjC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,yBAAsB;AACvB,OAAO,EACL,YAAY,EACZ,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,0BAAuB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAQuB;AAPrB,yGAAA,UAAU,OAAA;AAQZ,kDAMwB;AALtB,4GAAA,YAAY,OAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EACL,UAAU,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../src/resources/v1/events/data-export/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EACL,UAAU,GAOX,0BAAsB;AACvB,OAAO,EACL,YAAY,GAKb,2BAAuB"}
|
|
@@ -2,7 +2,7 @@ import { APIResource } from "../../../core/resource.mjs";
|
|
|
2
2
|
import * as BetaAPI from "./beta/beta.mjs";
|
|
3
3
|
import { Beta } from "./beta/beta.mjs";
|
|
4
4
|
import * as DataExportAPI from "./data-export/data-export.mjs";
|
|
5
|
-
import { DataExport, DataExportMintScopedTokenParams, DataExportMintScopedTokenResponse, DataExportTriggerSyncParams, DataExportTriggerSyncResponse } from "./data-export/data-export.mjs";
|
|
5
|
+
import { DataExport, DataExportListModelsParams, DataExportListModelsResponse, DataExportMintScopedTokenParams, DataExportMintScopedTokenResponse, DataExportTriggerSyncParams, DataExportTriggerSyncResponse } from "./data-export/data-export.mjs";
|
|
6
6
|
import { APIPromise } from "../../../core/api-promise.mjs";
|
|
7
7
|
import { RequestOptions } from "../../../internal/request-options.mjs";
|
|
8
8
|
/**
|
|
@@ -79,7 +79,7 @@ export declare namespace EventReportParams {
|
|
|
79
79
|
}
|
|
80
80
|
export declare namespace Events {
|
|
81
81
|
export { type EventReportResponse as EventReportResponse, type EventReportParams as EventReportParams };
|
|
82
|
-
export { DataExport as DataExport, type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
82
|
+
export { DataExport as DataExport, type DataExportListModelsResponse as DataExportListModelsResponse, type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportListModelsParams as DataExportListModelsParams, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
83
83
|
export { Beta as Beta };
|
|
84
84
|
}
|
|
85
85
|
//# sourceMappingURL=events.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,mCAA+B;AACrD,OAAO,KAAK,OAAO,wBAAoB;AACvC,OAAO,EAAE,IAAI,EAAE,wBAAoB;AACnC,OAAO,KAAK,aAAa,sCAAkC;AAC3D,OAAO,EACL,UAAU,EACV,+BAA+B,EAC/B,iCAAiC,EACjC,2BAA2B,EAC3B,6BAA6B,EAC9B,sCAAkC;AACnC,OAAO,EAAE,UAAU,EAAE,sCAAkC;AAEvD,OAAO,EAAE,cAAc,EAAE,8CAA0C;AAEnE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;IAEpD;;;OAGG;IACH,MAAM,CAAC,MAAM,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;CAc7F;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,IAAI,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAEvC;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,yBAAiB,iBAAiB,CAAC;IACjC;;OAEG;IACH,UAAiB,KAAK;QACpB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,cAAc,EAAE,MAAM,CAAC;QAEvB;;WAEG;QACH,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAE1D;;WAEG;QACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAE3B;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB;CACF;AAKD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EAAE,KAAK,mBAAmB,IAAI,mBAAmB,EAAE,KAAK,iBAAiB,IAAI,iBAAiB,EAAE,CAAC;IAExG,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,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,EAAE,IAAI,IAAI,IAAI,EAAE,CAAC;CACzB"}
|
|
1
|
+
{"version":3,"file":"events.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,mCAA+B;AACrD,OAAO,KAAK,OAAO,wBAAoB;AACvC,OAAO,EAAE,IAAI,EAAE,wBAAoB;AACnC,OAAO,KAAK,aAAa,sCAAkC;AAC3D,OAAO,EACL,UAAU,EACV,0BAA0B,EAC1B,4BAA4B,EAC5B,+BAA+B,EAC/B,iCAAiC,EACjC,2BAA2B,EAC3B,6BAA6B,EAC9B,sCAAkC;AACnC,OAAO,EAAE,UAAU,EAAE,sCAAkC;AAEvD,OAAO,EAAE,cAAc,EAAE,8CAA0C;AAEnE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;IAEpD;;;OAGG;IACH,MAAM,CAAC,MAAM,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;CAc7F;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,IAAI,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAEvC;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,yBAAiB,iBAAiB,CAAC;IACjC;;OAEG;IACH,UAAiB,KAAK;QACpB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,cAAc,EAAE,MAAM,CAAC;QAEvB;;WAEG;QACH,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAE1D;;WAEG;QACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAE3B;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB;CACF;AAKD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EAAE,KAAK,mBAAmB,IAAI,mBAAmB,EAAE,KAAK,iBAAiB,IAAI,iBAAiB,EAAE,CAAC;IAExG,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;IAEF,OAAO,EAAE,IAAI,IAAI,IAAI,EAAE,CAAC;CACzB"}
|
|
@@ -2,7 +2,7 @@ import { APIResource } from "../../../core/resource.js";
|
|
|
2
2
|
import * as BetaAPI from "./beta/beta.js";
|
|
3
3
|
import { Beta } from "./beta/beta.js";
|
|
4
4
|
import * as DataExportAPI from "./data-export/data-export.js";
|
|
5
|
-
import { DataExport, DataExportMintScopedTokenParams, DataExportMintScopedTokenResponse, DataExportTriggerSyncParams, DataExportTriggerSyncResponse } from "./data-export/data-export.js";
|
|
5
|
+
import { DataExport, DataExportListModelsParams, DataExportListModelsResponse, DataExportMintScopedTokenParams, DataExportMintScopedTokenResponse, DataExportTriggerSyncParams, DataExportTriggerSyncResponse } from "./data-export/data-export.js";
|
|
6
6
|
import { APIPromise } from "../../../core/api-promise.js";
|
|
7
7
|
import { RequestOptions } from "../../../internal/request-options.js";
|
|
8
8
|
/**
|
|
@@ -79,7 +79,7 @@ export declare namespace EventReportParams {
|
|
|
79
79
|
}
|
|
80
80
|
export declare namespace Events {
|
|
81
81
|
export { type EventReportResponse as EventReportResponse, type EventReportParams as EventReportParams };
|
|
82
|
-
export { DataExport as DataExport, type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
82
|
+
export { DataExport as DataExport, type DataExportListModelsResponse as DataExportListModelsResponse, type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse, type DataExportListModelsParams as DataExportListModelsParams, type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams, type DataExportTriggerSyncParams as DataExportTriggerSyncParams, };
|
|
83
83
|
export { Beta as Beta };
|
|
84
84
|
}
|
|
85
85
|
//# sourceMappingURL=events.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,kCAA+B;AACrD,OAAO,KAAK,OAAO,uBAAoB;AACvC,OAAO,EAAE,IAAI,EAAE,uBAAoB;AACnC,OAAO,KAAK,aAAa,qCAAkC;AAC3D,OAAO,EACL,UAAU,EACV,+BAA+B,EAC/B,iCAAiC,EACjC,2BAA2B,EAC3B,6BAA6B,EAC9B,qCAAkC;AACnC,OAAO,EAAE,UAAU,EAAE,qCAAkC;AAEvD,OAAO,EAAE,cAAc,EAAE,6CAA0C;AAEnE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;IAEpD;;;OAGG;IACH,MAAM,CAAC,MAAM,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;CAc7F;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,IAAI,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAEvC;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,yBAAiB,iBAAiB,CAAC;IACjC;;OAEG;IACH,UAAiB,KAAK;QACpB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,cAAc,EAAE,MAAM,CAAC;QAEvB;;WAEG;QACH,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAE1D;;WAEG;QACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAE3B;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB;CACF;AAKD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EAAE,KAAK,mBAAmB,IAAI,mBAAmB,EAAE,KAAK,iBAAiB,IAAI,iBAAiB,EAAE,CAAC;IAExG,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,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,EAAE,IAAI,IAAI,IAAI,EAAE,CAAC;CACzB"}
|
|
1
|
+
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,kCAA+B;AACrD,OAAO,KAAK,OAAO,uBAAoB;AACvC,OAAO,EAAE,IAAI,EAAE,uBAAoB;AACnC,OAAO,KAAK,aAAa,qCAAkC;AAC3D,OAAO,EACL,UAAU,EACV,0BAA0B,EAC1B,4BAA4B,EAC5B,+BAA+B,EAC/B,iCAAiC,EACjC,2BAA2B,EAC3B,6BAA6B,EAC9B,qCAAkC;AACnC,OAAO,EAAE,UAAU,EAAE,qCAAkC;AAEvD,OAAO,EAAE,cAAc,EAAE,6CAA0C;AAEnE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;IAEpD;;;OAGG;IACH,MAAM,CAAC,MAAM,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;CAc7F;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,IAAI,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAEvC;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,yBAAiB,iBAAiB,CAAC;IACjC;;OAEG;IACH,UAAiB,KAAK;QACpB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,cAAc,EAAE,MAAM,CAAC;QAEvB;;WAEG;QACH,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAE1D;;WAEG;QACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAE3B;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB;CACF;AAKD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EAAE,KAAK,mBAAmB,IAAI,mBAAmB,EAAE,KAAK,iBAAiB,IAAI,iBAAiB,EAAE,CAAC;IAExG,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;IAEF,OAAO,EAAE,IAAI,IAAI,IAAI,EAAE,CAAC;CACzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.js","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,wDAAqD;AACrD,gEAAuC;AACvC,yCAAmC;AACnC,oFAA2D;AAC3D,
|
|
1
|
+
{"version":3,"file":"events.js","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,wDAAqD;AACrD,gEAAuC;AACvC,yCAAmC;AACnC,oFAA2D;AAC3D,8DAQmC;AAEnC,0DAAyD;AAGzD;;GAEG;AACH,MAAa,MAAO,SAAQ,sBAAW;IAAvC;;QACE,eAAU,GAA6B,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClF,SAAI,GAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAoBtD,CAAC;IAlBC;;;OAGG;IACH,MAAM,CAAC,MAAyB,EAAE,OAAwB;QACxD,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC3F,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE;YACzC,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;CACF;AAtBD,wBAsBC;AAsED,MAAM,CAAC,UAAU,GAAG,wBAAU,CAAC;AAC/B,MAAM,CAAC,IAAI,GAAG,WAAI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.mjs","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,mCAA+B;AACrD,OAAO,KAAK,OAAO,wBAAoB;AACvC,OAAO,EAAE,IAAI,EAAE,wBAAoB;AACnC,OAAO,KAAK,aAAa,sCAAkC;AAC3D,OAAO,EACL,UAAU,
|
|
1
|
+
{"version":3,"file":"events.mjs","sourceRoot":"","sources":["../../../src/resources/v1/events/events.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,mCAA+B;AACrD,OAAO,KAAK,OAAO,wBAAoB;AACvC,OAAO,EAAE,IAAI,EAAE,wBAAoB;AACnC,OAAO,KAAK,aAAa,sCAAkC;AAC3D,OAAO,EACL,UAAU,GAOX,sCAAkC;AAEnC,OAAO,EAAE,YAAY,EAAE,sCAAkC;AAGzD;;GAEG;AACH,MAAM,OAAO,MAAO,SAAQ,WAAW;IAAvC;;QACE,eAAU,GAA6B,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClF,SAAI,GAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAoBtD,CAAC;IAlBC;;;OAGG;IACH,MAAM,CAAC,MAAyB,EAAE,OAAwB;QACxD,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC3F,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE;YACzC,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC;gBACpB;oBACE,GAAG,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;oBACpE,GAAG,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,kBAAkB,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;iBACjF;gBACD,OAAO,EAAE,OAAO;aACjB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;CACF;AAsED,MAAM,CAAC,UAAU,GAAG,UAAU,CAAC;AAC/B,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { Beta } from "./beta/index.mjs";
|
|
2
|
-
export { DataExport, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export/index.mjs";
|
|
2
|
+
export { DataExport, type DataExportListModelsResponse, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportListModelsParams, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export/index.mjs";
|
|
3
3
|
export { Events, type EventReportResponse, type EventReportParams } from "./events.mjs";
|
|
4
4
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,yBAAqB;AACpC,OAAO,EACL,UAAU,EACV,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,gCAA4B;AAC7B,OAAO,EAAE,MAAM,EAAE,KAAK,mBAAmB,EAAE,KAAK,iBAAiB,EAAE,qBAAiB"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,yBAAqB;AACpC,OAAO,EACL,UAAU,EACV,KAAK,4BAA4B,EACjC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,gCAA4B;AAC7B,OAAO,EAAE,MAAM,EAAE,KAAK,mBAAmB,EAAE,KAAK,iBAAiB,EAAE,qBAAiB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { Beta } from "./beta/index.js";
|
|
2
|
-
export { DataExport, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export/index.js";
|
|
2
|
+
export { DataExport, type DataExportListModelsResponse, type DataExportMintScopedTokenResponse, type DataExportTriggerSyncResponse, type DataExportListModelsParams, type DataExportMintScopedTokenParams, type DataExportTriggerSyncParams, } from "./data-export/index.js";
|
|
3
3
|
export { Events, type EventReportResponse, type EventReportParams } from "./events.js";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,wBAAqB;AACpC,OAAO,EACL,UAAU,EACV,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,+BAA4B;AAC7B,OAAO,EAAE,MAAM,EAAE,KAAK,mBAAmB,EAAE,KAAK,iBAAiB,EAAE,oBAAiB"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,wBAAqB;AACpC,OAAO,EACL,UAAU,EACV,KAAK,4BAA4B,EACjC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,GACjC,+BAA4B;AAC7B,OAAO,EAAE,MAAM,EAAE,KAAK,mBAAmB,EAAE,KAAK,iBAAiB,EAAE,oBAAiB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,yCAAoC;AAA3B,6FAAA,IAAI,OAAA;AACb,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,yCAAoC;AAA3B,6FAAA,IAAI,OAAA;AACb,gDAQ6B;AAP3B,mGAAA,UAAU,OAAA;AAQZ,sCAAoF;AAA3E,gGAAA,MAAM,OAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,IAAI,EAAE,yBAAqB;AACpC,OAAO,EACL,UAAU,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/v1/events/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,IAAI,EAAE,yBAAqB;AACpC,OAAO,EACL,UAAU,GAOX,gCAA4B;AAC7B,OAAO,EAAE,MAAM,EAAoD,qBAAiB"}
|
|
@@ -16,6 +16,27 @@ import { RequestOptions } from '../../../../internal/request-options';
|
|
|
16
16
|
export class DataExport extends APIResource {
|
|
17
17
|
destinations: DestinationsAPI.Destinations = new DestinationsAPI.Destinations(this._client);
|
|
18
18
|
|
|
19
|
+
/**
|
|
20
|
+
* List the catalog of data-export models the customer can opt into when connecting
|
|
21
|
+
* a destination.
|
|
22
|
+
*/
|
|
23
|
+
listModels(
|
|
24
|
+
params: DataExportListModelsParams | null | undefined = {},
|
|
25
|
+
options?: RequestOptions,
|
|
26
|
+
): APIPromise<DataExportListModelsResponse> {
|
|
27
|
+
const { 'X-ACCOUNT-ID': xAccountID, 'X-ENVIRONMENT-ID': xEnvironmentID } = params ?? {};
|
|
28
|
+
return this._client.get('/api/v1/data-export/models', {
|
|
29
|
+
...options,
|
|
30
|
+
headers: buildHeaders([
|
|
31
|
+
{
|
|
32
|
+
...(xAccountID != null ? { 'X-ACCOUNT-ID': xAccountID } : undefined),
|
|
33
|
+
...(xEnvironmentID != null ? { 'X-ENVIRONMENT-ID': xEnvironmentID } : undefined),
|
|
34
|
+
},
|
|
35
|
+
options?.headers,
|
|
36
|
+
]),
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
19
40
|
/**
|
|
20
41
|
* Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT
|
|
21
42
|
* integration if needed.
|
|
@@ -61,6 +82,68 @@ export class DataExport extends APIResource {
|
|
|
61
82
|
}
|
|
62
83
|
}
|
|
63
84
|
|
|
85
|
+
/**
|
|
86
|
+
* Response object
|
|
87
|
+
*/
|
|
88
|
+
export interface DataExportListModelsResponse {
|
|
89
|
+
/**
|
|
90
|
+
* Grouped catalog of every data-export model a destination can opt into.
|
|
91
|
+
*/
|
|
92
|
+
data: DataExportListModelsResponse.Data;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export namespace DataExportListModelsResponse {
|
|
96
|
+
/**
|
|
97
|
+
* Grouped catalog of every data-export model a destination can opt into.
|
|
98
|
+
*/
|
|
99
|
+
export interface Data {
|
|
100
|
+
/**
|
|
101
|
+
* Groups of data-export models, in display order
|
|
102
|
+
*/
|
|
103
|
+
groups: Array<Data.Group>;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export namespace Data {
|
|
107
|
+
/**
|
|
108
|
+
* A group of related data-export models, mirroring the public docs taxonomy.
|
|
109
|
+
*/
|
|
110
|
+
export interface Group {
|
|
111
|
+
/**
|
|
112
|
+
* Stable group identifier
|
|
113
|
+
*/
|
|
114
|
+
id: string;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Customer-facing group label
|
|
118
|
+
*/
|
|
119
|
+
displayName: string;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Models in this group
|
|
123
|
+
*/
|
|
124
|
+
models: Array<Group.Model>;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export namespace Group {
|
|
128
|
+
/**
|
|
129
|
+
* A single data-export model the customer can opt into.
|
|
130
|
+
*/
|
|
131
|
+
export interface Model {
|
|
132
|
+
/**
|
|
133
|
+
* Wire identifier — what gets persisted on the destination and registered with the
|
|
134
|
+
* provider
|
|
135
|
+
*/
|
|
136
|
+
id: string;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Customer-facing label for the model
|
|
140
|
+
*/
|
|
141
|
+
displayName: string;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
64
147
|
/**
|
|
65
148
|
* Response object
|
|
66
149
|
*/
|
|
@@ -142,6 +225,21 @@ export namespace DataExportTriggerSyncResponse {
|
|
|
142
225
|
}
|
|
143
226
|
}
|
|
144
227
|
|
|
228
|
+
export interface DataExportListModelsParams {
|
|
229
|
+
/**
|
|
230
|
+
* Account ID — optional when authenticating with a user JWT (Bearer token); falls
|
|
231
|
+
* back to the user's first membership. Ignored for API-key auth.
|
|
232
|
+
*/
|
|
233
|
+
'X-ACCOUNT-ID'?: string;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Environment ID — required when authenticating with a user JWT (Bearer token) on
|
|
237
|
+
* environment-scoped endpoints. Ignored for API-key auth (env is intrinsic to the
|
|
238
|
+
* key).
|
|
239
|
+
*/
|
|
240
|
+
'X-ENVIRONMENT-ID'?: string;
|
|
241
|
+
}
|
|
242
|
+
|
|
145
243
|
export interface DataExportMintScopedTokenParams {
|
|
146
244
|
/**
|
|
147
245
|
* Body param: FE origin the resulting JWT is bound to (provider-side anti-fraud)
|
|
@@ -153,6 +251,11 @@ export interface DataExportMintScopedTokenParams {
|
|
|
153
251
|
*/
|
|
154
252
|
destinationType?: string;
|
|
155
253
|
|
|
254
|
+
/**
|
|
255
|
+
* Body param
|
|
256
|
+
*/
|
|
257
|
+
enabledModels?: Array<string>;
|
|
258
|
+
|
|
156
259
|
/**
|
|
157
260
|
* Header param: Account ID — optional when authenticating with a user JWT (Bearer
|
|
158
261
|
* token); falls back to the user's first membership. Ignored for API-key auth.
|
|
@@ -191,8 +294,10 @@ DataExport.Destinations = Destinations;
|
|
|
191
294
|
|
|
192
295
|
export declare namespace DataExport {
|
|
193
296
|
export {
|
|
297
|
+
type DataExportListModelsResponse as DataExportListModelsResponse,
|
|
194
298
|
type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse,
|
|
195
299
|
type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse,
|
|
300
|
+
type DataExportListModelsParams as DataExportListModelsParams,
|
|
196
301
|
type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams,
|
|
197
302
|
type DataExportTriggerSyncParams as DataExportTriggerSyncParams,
|
|
198
303
|
};
|
|
@@ -95,6 +95,8 @@ export namespace DestinationCreateResponse {
|
|
|
95
95
|
*/
|
|
96
96
|
connectionStatus?: string;
|
|
97
97
|
|
|
98
|
+
enabledModels?: Array<string>;
|
|
99
|
+
|
|
98
100
|
/**
|
|
99
101
|
* Latest sync snapshot for the destination, refreshed by the provider webhook
|
|
100
102
|
*/
|
|
@@ -186,6 +188,8 @@ export namespace DestinationDeleteResponse {
|
|
|
186
188
|
*/
|
|
187
189
|
connectionStatus?: string;
|
|
188
190
|
|
|
191
|
+
enabledModels?: Array<string>;
|
|
192
|
+
|
|
189
193
|
/**
|
|
190
194
|
* Latest sync snapshot for the destination, refreshed by the provider webhook
|
|
191
195
|
*/
|
|
@@ -242,6 +246,11 @@ export interface DestinationCreateParams {
|
|
|
242
246
|
*/
|
|
243
247
|
destinationType: string;
|
|
244
248
|
|
|
249
|
+
/**
|
|
250
|
+
* Body param
|
|
251
|
+
*/
|
|
252
|
+
enabledModels?: Array<string>;
|
|
253
|
+
|
|
245
254
|
/**
|
|
246
255
|
* Header param: Account ID — optional when authenticating with a user JWT (Bearer
|
|
247
256
|
* token); falls back to the user's first membership. Ignored for API-key auth.
|
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
export {
|
|
4
4
|
DataExport,
|
|
5
|
+
type DataExportListModelsResponse,
|
|
5
6
|
type DataExportMintScopedTokenResponse,
|
|
6
7
|
type DataExportTriggerSyncResponse,
|
|
8
|
+
type DataExportListModelsParams,
|
|
7
9
|
type DataExportMintScopedTokenParams,
|
|
8
10
|
type DataExportTriggerSyncParams,
|
|
9
11
|
} from './data-export';
|
|
@@ -6,6 +6,8 @@ import { Beta } from './beta/beta';
|
|
|
6
6
|
import * as DataExportAPI from './data-export/data-export';
|
|
7
7
|
import {
|
|
8
8
|
DataExport,
|
|
9
|
+
DataExportListModelsParams,
|
|
10
|
+
DataExportListModelsResponse,
|
|
9
11
|
DataExportMintScopedTokenParams,
|
|
10
12
|
DataExportMintScopedTokenResponse,
|
|
11
13
|
DataExportTriggerSyncParams,
|
|
@@ -118,8 +120,10 @@ export declare namespace Events {
|
|
|
118
120
|
|
|
119
121
|
export {
|
|
120
122
|
DataExport as DataExport,
|
|
123
|
+
type DataExportListModelsResponse as DataExportListModelsResponse,
|
|
121
124
|
type DataExportMintScopedTokenResponse as DataExportMintScopedTokenResponse,
|
|
122
125
|
type DataExportTriggerSyncResponse as DataExportTriggerSyncResponse,
|
|
126
|
+
type DataExportListModelsParams as DataExportListModelsParams,
|
|
123
127
|
type DataExportMintScopedTokenParams as DataExportMintScopedTokenParams,
|
|
124
128
|
type DataExportTriggerSyncParams as DataExportTriggerSyncParams,
|
|
125
129
|
};
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
export { Beta } from './beta/index';
|
|
4
4
|
export {
|
|
5
5
|
DataExport,
|
|
6
|
+
type DataExportListModelsResponse,
|
|
6
7
|
type DataExportMintScopedTokenResponse,
|
|
7
8
|
type DataExportTriggerSyncResponse,
|
|
9
|
+
type DataExportListModelsParams,
|
|
8
10
|
type DataExportMintScopedTokenParams,
|
|
9
11
|
type DataExportTriggerSyncParams,
|
|
10
12
|
} from './data-export/index';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-beta.
|
|
1
|
+
export const VERSION = '0.1.0-beta.28'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-beta.
|
|
1
|
+
export declare const VERSION = "0.1.0-beta.28";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-beta.
|
|
1
|
+
export declare const VERSION = "0.1.0-beta.28";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.1.0-beta.
|
|
4
|
+
exports.VERSION = '0.1.0-beta.28'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-beta.
|
|
1
|
+
export const VERSION = '0.1.0-beta.28'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|