@keystrokehq/shipengine 0.1.3 → 0.1.4
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/actions/create-warehouse.d.cts +6 -6
- package/dist/actions/create-warehouse.d.mts +6 -6
- package/dist/actions/get-warehouse-by-id.d.cts +2 -2
- package/dist/actions/get-warehouse-by-id.d.mts +2 -2
- package/dist/actions/list-batches2.d.cts +2 -2
- package/dist/actions/list-batches2.d.mts +2 -2
- package/dist/actions/list-warehouses.d.cts +1 -1
- package/dist/actions/list-warehouses.d.mts +1 -1
- package/dist/actions/update-shipment.d.cts +11 -11
- package/dist/actions/update-shipment.d.mts +11 -11
- package/dist/actions/update-warehouse.d.cts +4 -4
- package/dist/actions/update-warehouse.d.mts +4 -4
- package/dist/actions/validate-address.d.cts +5 -5
- package/dist/actions/validate-address.d.mts +5 -5
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -15,9 +15,9 @@ declare const ShipengineCreateWarehouseInput: z.ZodObject<{
|
|
|
15
15
|
city_locality: z.ZodString;
|
|
16
16
|
state_province: z.ZodString;
|
|
17
17
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
18
|
+
unknown: "unknown";
|
|
18
19
|
yes: "yes";
|
|
19
20
|
no: "no";
|
|
20
|
-
unknown: "unknown";
|
|
21
21
|
}>>;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
return_address: z.ZodOptional<z.ZodObject<{
|
|
@@ -32,9 +32,9 @@ declare const ShipengineCreateWarehouseInput: z.ZodObject<{
|
|
|
32
32
|
city_locality: z.ZodString;
|
|
33
33
|
state_province: z.ZodString;
|
|
34
34
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
35
|
+
unknown: "unknown";
|
|
35
36
|
yes: "yes";
|
|
36
37
|
no: "no";
|
|
37
|
-
unknown: "unknown";
|
|
38
38
|
}>>;
|
|
39
39
|
}, z.core.$strip>>;
|
|
40
40
|
warehouse_name: z.ZodString;
|
|
@@ -56,9 +56,9 @@ declare const ShipengineCreateWarehouseOutput: z.ZodObject<{
|
|
|
56
56
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
57
57
|
state_province: z.ZodNullable<z.ZodString>;
|
|
58
58
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
59
|
+
unknown: "unknown";
|
|
59
60
|
yes: "yes";
|
|
60
61
|
no: "no";
|
|
61
|
-
unknown: "unknown";
|
|
62
62
|
}>>>;
|
|
63
63
|
}, z.core.$loose>>;
|
|
64
64
|
return_address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -73,9 +73,9 @@ declare const ShipengineCreateWarehouseOutput: z.ZodObject<{
|
|
|
73
73
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
74
74
|
state_province: z.ZodNullable<z.ZodString>;
|
|
75
75
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
76
|
+
unknown: "unknown";
|
|
76
77
|
yes: "yes";
|
|
77
78
|
no: "no";
|
|
78
|
-
unknown: "unknown";
|
|
79
79
|
}>>>;
|
|
80
80
|
}, z.core.$loose>>>;
|
|
81
81
|
}, z.core.$loose>;
|
|
@@ -91,7 +91,7 @@ declare const shipengineCreateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
91
91
|
company_name?: string | undefined;
|
|
92
92
|
address_line2?: string | undefined;
|
|
93
93
|
address_line3?: string | undefined;
|
|
94
|
-
address_residential_indicator?: "
|
|
94
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
95
95
|
};
|
|
96
96
|
warehouse_name: string;
|
|
97
97
|
is_default?: boolean | undefined;
|
|
@@ -106,7 +106,7 @@ declare const shipengineCreateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
106
106
|
company_name?: string | undefined;
|
|
107
107
|
address_line2?: string | undefined;
|
|
108
108
|
address_line3?: string | undefined;
|
|
109
|
-
address_residential_indicator?: "
|
|
109
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
110
110
|
} | undefined;
|
|
111
111
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
112
112
|
//#endregion
|
|
@@ -15,9 +15,9 @@ declare const ShipengineCreateWarehouseInput: z.ZodObject<{
|
|
|
15
15
|
city_locality: z.ZodString;
|
|
16
16
|
state_province: z.ZodString;
|
|
17
17
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
18
|
+
unknown: "unknown";
|
|
18
19
|
yes: "yes";
|
|
19
20
|
no: "no";
|
|
20
|
-
unknown: "unknown";
|
|
21
21
|
}>>;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
return_address: z.ZodOptional<z.ZodObject<{
|
|
@@ -32,9 +32,9 @@ declare const ShipengineCreateWarehouseInput: z.ZodObject<{
|
|
|
32
32
|
city_locality: z.ZodString;
|
|
33
33
|
state_province: z.ZodString;
|
|
34
34
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
35
|
+
unknown: "unknown";
|
|
35
36
|
yes: "yes";
|
|
36
37
|
no: "no";
|
|
37
|
-
unknown: "unknown";
|
|
38
38
|
}>>;
|
|
39
39
|
}, z.core.$strip>>;
|
|
40
40
|
warehouse_name: z.ZodString;
|
|
@@ -56,9 +56,9 @@ declare const ShipengineCreateWarehouseOutput: z.ZodObject<{
|
|
|
56
56
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
57
57
|
state_province: z.ZodNullable<z.ZodString>;
|
|
58
58
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
59
|
+
unknown: "unknown";
|
|
59
60
|
yes: "yes";
|
|
60
61
|
no: "no";
|
|
61
|
-
unknown: "unknown";
|
|
62
62
|
}>>>;
|
|
63
63
|
}, z.core.$loose>>;
|
|
64
64
|
return_address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -73,9 +73,9 @@ declare const ShipengineCreateWarehouseOutput: z.ZodObject<{
|
|
|
73
73
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
74
74
|
state_province: z.ZodNullable<z.ZodString>;
|
|
75
75
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
76
|
+
unknown: "unknown";
|
|
76
77
|
yes: "yes";
|
|
77
78
|
no: "no";
|
|
78
|
-
unknown: "unknown";
|
|
79
79
|
}>>>;
|
|
80
80
|
}, z.core.$loose>>>;
|
|
81
81
|
}, z.core.$loose>;
|
|
@@ -91,7 +91,7 @@ declare const shipengineCreateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
91
91
|
company_name?: string | undefined;
|
|
92
92
|
address_line2?: string | undefined;
|
|
93
93
|
address_line3?: string | undefined;
|
|
94
|
-
address_residential_indicator?: "
|
|
94
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
95
95
|
};
|
|
96
96
|
warehouse_name: string;
|
|
97
97
|
is_default?: boolean | undefined;
|
|
@@ -106,7 +106,7 @@ declare const shipengineCreateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
106
106
|
company_name?: string | undefined;
|
|
107
107
|
address_line2?: string | undefined;
|
|
108
108
|
address_line3?: string | undefined;
|
|
109
|
-
address_residential_indicator?: "
|
|
109
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
110
110
|
} | undefined;
|
|
111
111
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
112
112
|
//#endregion
|
|
@@ -21,9 +21,9 @@ declare const ShipengineGetWarehouseByIdOutput: z.ZodObject<{
|
|
|
21
21
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
22
22
|
state_province: z.ZodNullable<z.ZodString>;
|
|
23
23
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
24
|
+
unknown: "unknown";
|
|
24
25
|
yes: "yes";
|
|
25
26
|
no: "no";
|
|
26
|
-
unknown: "unknown";
|
|
27
27
|
}>>>;
|
|
28
28
|
}, z.core.$loose>>;
|
|
29
29
|
return_address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -38,9 +38,9 @@ declare const ShipengineGetWarehouseByIdOutput: z.ZodObject<{
|
|
|
38
38
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
39
39
|
state_province: z.ZodNullable<z.ZodString>;
|
|
40
40
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41
|
+
unknown: "unknown";
|
|
41
42
|
yes: "yes";
|
|
42
43
|
no: "no";
|
|
43
|
-
unknown: "unknown";
|
|
44
44
|
}>>>;
|
|
45
45
|
}, z.core.$loose>>>;
|
|
46
46
|
}, z.core.$loose>;
|
|
@@ -21,9 +21,9 @@ declare const ShipengineGetWarehouseByIdOutput: z.ZodObject<{
|
|
|
21
21
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
22
22
|
state_province: z.ZodNullable<z.ZodString>;
|
|
23
23
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
24
|
+
unknown: "unknown";
|
|
24
25
|
yes: "yes";
|
|
25
26
|
no: "no";
|
|
26
|
-
unknown: "unknown";
|
|
27
27
|
}>>>;
|
|
28
28
|
}, z.core.$loose>>;
|
|
29
29
|
return_address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -38,9 +38,9 @@ declare const ShipengineGetWarehouseByIdOutput: z.ZodObject<{
|
|
|
38
38
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
39
39
|
state_province: z.ZodNullable<z.ZodString>;
|
|
40
40
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
41
|
+
unknown: "unknown";
|
|
41
42
|
yes: "yes";
|
|
42
43
|
no: "no";
|
|
43
|
-
unknown: "unknown";
|
|
44
44
|
}>>>;
|
|
45
45
|
}, z.core.$loose>>>;
|
|
46
46
|
}, z.core.$loose>;
|
|
@@ -15,8 +15,8 @@ declare const ShipengineListBatches2Input: z.ZodObject<{
|
|
|
15
15
|
}>>;
|
|
16
16
|
sort_by: z.ZodOptional<z.ZodEnum<{
|
|
17
17
|
created_at: "created_at";
|
|
18
|
-
processed_at: "processed_at";
|
|
19
18
|
ship_date: "ship_date";
|
|
19
|
+
processed_at: "processed_at";
|
|
20
20
|
}>>;
|
|
21
21
|
sort_dir: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
22
22
|
page_size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
@@ -63,7 +63,7 @@ declare const ShipengineListBatches2Output: z.ZodObject<{
|
|
|
63
63
|
declare const shipengineListBatches2: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
64
64
|
page?: number | undefined;
|
|
65
65
|
status?: "completed" | "open" | "queued" | "processing" | "completed_with_errors" | "archived" | "notifying" | "invalid" | undefined;
|
|
66
|
-
sort_by?: "created_at" | "
|
|
66
|
+
sort_by?: "created_at" | "ship_date" | "processed_at" | undefined;
|
|
67
67
|
sort_dir?: string | undefined;
|
|
68
68
|
page_size?: number | undefined;
|
|
69
69
|
batch_number?: string | undefined;
|
|
@@ -15,8 +15,8 @@ declare const ShipengineListBatches2Input: z.ZodObject<{
|
|
|
15
15
|
}>>;
|
|
16
16
|
sort_by: z.ZodOptional<z.ZodEnum<{
|
|
17
17
|
created_at: "created_at";
|
|
18
|
-
processed_at: "processed_at";
|
|
19
18
|
ship_date: "ship_date";
|
|
19
|
+
processed_at: "processed_at";
|
|
20
20
|
}>>;
|
|
21
21
|
sort_dir: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
22
22
|
page_size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
@@ -63,7 +63,7 @@ declare const ShipengineListBatches2Output: z.ZodObject<{
|
|
|
63
63
|
declare const shipengineListBatches2: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
64
64
|
page?: number | undefined;
|
|
65
65
|
status?: "completed" | "open" | "queued" | "processing" | "completed_with_errors" | "archived" | "notifying" | "invalid" | undefined;
|
|
66
|
-
sort_by?: "created_at" | "
|
|
66
|
+
sort_by?: "created_at" | "ship_date" | "processed_at" | undefined;
|
|
67
67
|
sort_dir?: string | undefined;
|
|
68
68
|
page_size?: number | undefined;
|
|
69
69
|
batch_number?: string | undefined;
|
|
@@ -22,9 +22,9 @@ declare const ShipengineListWarehousesOutput: z.ZodObject<{
|
|
|
22
22
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
23
23
|
state_province: z.ZodNullable<z.ZodString>;
|
|
24
24
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
25
|
+
unknown: "unknown";
|
|
25
26
|
yes: "yes";
|
|
26
27
|
no: "no";
|
|
27
|
-
unknown: "unknown";
|
|
28
28
|
}>>>;
|
|
29
29
|
}, z.core.$loose>>;
|
|
30
30
|
}, z.core.$loose>>;
|
|
@@ -22,9 +22,9 @@ declare const ShipengineListWarehousesOutput: z.ZodObject<{
|
|
|
22
22
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
23
23
|
state_province: z.ZodNullable<z.ZodString>;
|
|
24
24
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
25
|
+
unknown: "unknown";
|
|
25
26
|
yes: "yes";
|
|
26
27
|
no: "no";
|
|
27
|
-
unknown: "unknown";
|
|
28
28
|
}>>>;
|
|
29
29
|
}, z.core.$loose>>;
|
|
30
30
|
}, z.core.$loose>>;
|
|
@@ -27,9 +27,9 @@ declare const ShipengineUpdateShipmentInput: z.ZodObject<{
|
|
|
27
27
|
city_locality: z.ZodString;
|
|
28
28
|
state_province: z.ZodString;
|
|
29
29
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
30
|
+
unknown: "unknown";
|
|
30
31
|
yes: "yes";
|
|
31
32
|
no: "no";
|
|
32
|
-
unknown: "unknown";
|
|
33
33
|
}>>;
|
|
34
34
|
}, z.core.$strip>;
|
|
35
35
|
packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -75,9 +75,9 @@ declare const ShipengineUpdateShipmentInput: z.ZodObject<{
|
|
|
75
75
|
city_locality: z.ZodString;
|
|
76
76
|
state_province: z.ZodString;
|
|
77
77
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
78
|
+
unknown: "unknown";
|
|
78
79
|
yes: "yes";
|
|
79
80
|
no: "no";
|
|
80
|
-
unknown: "unknown";
|
|
81
81
|
}>>;
|
|
82
82
|
}, z.core.$strip>>;
|
|
83
83
|
ship_date: z.ZodOptional<z.ZodString>;
|
|
@@ -93,9 +93,9 @@ declare const ShipengineUpdateShipmentInput: z.ZodObject<{
|
|
|
93
93
|
city_locality: z.ZodString;
|
|
94
94
|
state_province: z.ZodString;
|
|
95
95
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
96
|
+
unknown: "unknown";
|
|
96
97
|
yes: "yes";
|
|
97
98
|
no: "no";
|
|
98
|
-
unknown: "unknown";
|
|
99
99
|
}>>;
|
|
100
100
|
}, z.core.$strip>;
|
|
101
101
|
carrier_id: z.ZodOptional<z.ZodString>;
|
|
@@ -167,9 +167,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
167
167
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
168
168
|
state_province: z.ZodNullable<z.ZodString>;
|
|
169
169
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
170
|
+
unknown: "unknown";
|
|
170
171
|
yes: "yes";
|
|
171
172
|
no: "no";
|
|
172
|
-
unknown: "unknown";
|
|
173
173
|
}>>>;
|
|
174
174
|
}, z.core.$loose>>;
|
|
175
175
|
packages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -217,9 +217,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
217
217
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
218
218
|
state_province: z.ZodNullable<z.ZodString>;
|
|
219
219
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
220
|
+
unknown: "unknown";
|
|
220
221
|
yes: "yes";
|
|
221
222
|
no: "no";
|
|
222
|
-
unknown: "unknown";
|
|
223
223
|
}>>>;
|
|
224
224
|
}, z.core.$loose>>>;
|
|
225
225
|
ship_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -235,9 +235,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
235
235
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
236
236
|
state_province: z.ZodNullable<z.ZodString>;
|
|
237
237
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
238
|
+
unknown: "unknown";
|
|
238
239
|
yes: "yes";
|
|
239
240
|
no: "no";
|
|
240
|
-
unknown: "unknown";
|
|
241
241
|
}>>>;
|
|
242
242
|
}, z.core.$loose>>;
|
|
243
243
|
carrier_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -294,9 +294,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
294
294
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
295
295
|
state_province: z.ZodNullable<z.ZodString>;
|
|
296
296
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
297
|
+
unknown: "unknown";
|
|
297
298
|
yes: "yes";
|
|
298
299
|
no: "no";
|
|
299
|
-
unknown: "unknown";
|
|
300
300
|
}>>>;
|
|
301
301
|
}, z.core.$loose>>>;
|
|
302
302
|
original_address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -311,9 +311,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
311
311
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
312
312
|
state_province: z.ZodNullable<z.ZodString>;
|
|
313
313
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
314
|
+
unknown: "unknown";
|
|
314
315
|
yes: "yes";
|
|
315
316
|
no: "no";
|
|
316
|
-
unknown: "unknown";
|
|
317
317
|
}>>>;
|
|
318
318
|
}, z.core.$loose>>>;
|
|
319
319
|
}, z.core.$loose>>>;
|
|
@@ -332,7 +332,7 @@ declare const shipengineUpdateShipment: import("@keystrokehq/action").WorkflowAc
|
|
|
332
332
|
company_name?: string | undefined;
|
|
333
333
|
address_line2?: string | undefined;
|
|
334
334
|
address_line3?: string | undefined;
|
|
335
|
-
address_residential_indicator?: "
|
|
335
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
336
336
|
};
|
|
337
337
|
ship_from: {
|
|
338
338
|
name: string;
|
|
@@ -345,7 +345,7 @@ declare const shipengineUpdateShipment: import("@keystrokehq/action").WorkflowAc
|
|
|
345
345
|
company_name?: string | undefined;
|
|
346
346
|
address_line2?: string | undefined;
|
|
347
347
|
address_line3?: string | undefined;
|
|
348
|
-
address_residential_indicator?: "
|
|
348
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
349
349
|
};
|
|
350
350
|
shipment_id: string;
|
|
351
351
|
tags?: string[] | undefined;
|
|
@@ -397,7 +397,7 @@ declare const shipengineUpdateShipment: import("@keystrokehq/action").WorkflowAc
|
|
|
397
397
|
company_name?: string | undefined;
|
|
398
398
|
address_line2?: string | undefined;
|
|
399
399
|
address_line3?: string | undefined;
|
|
400
|
-
address_residential_indicator?: "
|
|
400
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
401
401
|
} | undefined;
|
|
402
402
|
ship_date?: string | undefined;
|
|
403
403
|
carrier_id?: string | undefined;
|
|
@@ -27,9 +27,9 @@ declare const ShipengineUpdateShipmentInput: z.ZodObject<{
|
|
|
27
27
|
city_locality: z.ZodString;
|
|
28
28
|
state_province: z.ZodString;
|
|
29
29
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
30
|
+
unknown: "unknown";
|
|
30
31
|
yes: "yes";
|
|
31
32
|
no: "no";
|
|
32
|
-
unknown: "unknown";
|
|
33
33
|
}>>;
|
|
34
34
|
}, z.core.$strip>;
|
|
35
35
|
packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -75,9 +75,9 @@ declare const ShipengineUpdateShipmentInput: z.ZodObject<{
|
|
|
75
75
|
city_locality: z.ZodString;
|
|
76
76
|
state_province: z.ZodString;
|
|
77
77
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
78
|
+
unknown: "unknown";
|
|
78
79
|
yes: "yes";
|
|
79
80
|
no: "no";
|
|
80
|
-
unknown: "unknown";
|
|
81
81
|
}>>;
|
|
82
82
|
}, z.core.$strip>>;
|
|
83
83
|
ship_date: z.ZodOptional<z.ZodString>;
|
|
@@ -93,9 +93,9 @@ declare const ShipengineUpdateShipmentInput: z.ZodObject<{
|
|
|
93
93
|
city_locality: z.ZodString;
|
|
94
94
|
state_province: z.ZodString;
|
|
95
95
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
96
|
+
unknown: "unknown";
|
|
96
97
|
yes: "yes";
|
|
97
98
|
no: "no";
|
|
98
|
-
unknown: "unknown";
|
|
99
99
|
}>>;
|
|
100
100
|
}, z.core.$strip>;
|
|
101
101
|
carrier_id: z.ZodOptional<z.ZodString>;
|
|
@@ -167,9 +167,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
167
167
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
168
168
|
state_province: z.ZodNullable<z.ZodString>;
|
|
169
169
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
170
|
+
unknown: "unknown";
|
|
170
171
|
yes: "yes";
|
|
171
172
|
no: "no";
|
|
172
|
-
unknown: "unknown";
|
|
173
173
|
}>>>;
|
|
174
174
|
}, z.core.$loose>>;
|
|
175
175
|
packages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -217,9 +217,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
217
217
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
218
218
|
state_province: z.ZodNullable<z.ZodString>;
|
|
219
219
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
220
|
+
unknown: "unknown";
|
|
220
221
|
yes: "yes";
|
|
221
222
|
no: "no";
|
|
222
|
-
unknown: "unknown";
|
|
223
223
|
}>>>;
|
|
224
224
|
}, z.core.$loose>>>;
|
|
225
225
|
ship_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -235,9 +235,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
235
235
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
236
236
|
state_province: z.ZodNullable<z.ZodString>;
|
|
237
237
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
238
|
+
unknown: "unknown";
|
|
238
239
|
yes: "yes";
|
|
239
240
|
no: "no";
|
|
240
|
-
unknown: "unknown";
|
|
241
241
|
}>>>;
|
|
242
242
|
}, z.core.$loose>>;
|
|
243
243
|
carrier_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -294,9 +294,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
294
294
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
295
295
|
state_province: z.ZodNullable<z.ZodString>;
|
|
296
296
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
297
|
+
unknown: "unknown";
|
|
297
298
|
yes: "yes";
|
|
298
299
|
no: "no";
|
|
299
|
-
unknown: "unknown";
|
|
300
300
|
}>>>;
|
|
301
301
|
}, z.core.$loose>>>;
|
|
302
302
|
original_address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -311,9 +311,9 @@ declare const ShipengineUpdateShipmentOutput: z.ZodObject<{
|
|
|
311
311
|
city_locality: z.ZodNullable<z.ZodString>;
|
|
312
312
|
state_province: z.ZodNullable<z.ZodString>;
|
|
313
313
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
314
|
+
unknown: "unknown";
|
|
314
315
|
yes: "yes";
|
|
315
316
|
no: "no";
|
|
316
|
-
unknown: "unknown";
|
|
317
317
|
}>>>;
|
|
318
318
|
}, z.core.$loose>>>;
|
|
319
319
|
}, z.core.$loose>>>;
|
|
@@ -332,7 +332,7 @@ declare const shipengineUpdateShipment: import("@keystrokehq/action").WorkflowAc
|
|
|
332
332
|
company_name?: string | undefined;
|
|
333
333
|
address_line2?: string | undefined;
|
|
334
334
|
address_line3?: string | undefined;
|
|
335
|
-
address_residential_indicator?: "
|
|
335
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
336
336
|
};
|
|
337
337
|
ship_from: {
|
|
338
338
|
name: string;
|
|
@@ -345,7 +345,7 @@ declare const shipengineUpdateShipment: import("@keystrokehq/action").WorkflowAc
|
|
|
345
345
|
company_name?: string | undefined;
|
|
346
346
|
address_line2?: string | undefined;
|
|
347
347
|
address_line3?: string | undefined;
|
|
348
|
-
address_residential_indicator?: "
|
|
348
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
349
349
|
};
|
|
350
350
|
shipment_id: string;
|
|
351
351
|
tags?: string[] | undefined;
|
|
@@ -397,7 +397,7 @@ declare const shipengineUpdateShipment: import("@keystrokehq/action").WorkflowAc
|
|
|
397
397
|
company_name?: string | undefined;
|
|
398
398
|
address_line2?: string | undefined;
|
|
399
399
|
address_line3?: string | undefined;
|
|
400
|
-
address_residential_indicator?: "
|
|
400
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
401
401
|
} | undefined;
|
|
402
402
|
ship_date?: string | undefined;
|
|
403
403
|
carrier_id?: string | undefined;
|
|
@@ -17,9 +17,9 @@ declare const ShipengineUpdateWarehouseInput: z.ZodObject<{
|
|
|
17
17
|
city_locality: z.ZodString;
|
|
18
18
|
state_province: z.ZodString;
|
|
19
19
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
20
|
+
unknown: "unknown";
|
|
20
21
|
yes: "yes";
|
|
21
22
|
no: "no";
|
|
22
|
-
unknown: "unknown";
|
|
23
23
|
}>>;
|
|
24
24
|
}, z.core.$strip>;
|
|
25
25
|
return_address: z.ZodOptional<z.ZodObject<{
|
|
@@ -34,9 +34,9 @@ declare const ShipengineUpdateWarehouseInput: z.ZodObject<{
|
|
|
34
34
|
city_locality: z.ZodString;
|
|
35
35
|
state_province: z.ZodString;
|
|
36
36
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
37
|
+
unknown: "unknown";
|
|
37
38
|
yes: "yes";
|
|
38
39
|
no: "no";
|
|
39
|
-
unknown: "unknown";
|
|
40
40
|
}>>;
|
|
41
41
|
}, z.core.$strip>>;
|
|
42
42
|
}, z.core.$strip>;
|
|
@@ -58,7 +58,7 @@ declare const shipengineUpdateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
58
58
|
company_name?: string | undefined;
|
|
59
59
|
address_line2?: string | undefined;
|
|
60
60
|
address_line3?: string | undefined;
|
|
61
|
-
address_residential_indicator?: "
|
|
61
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
62
62
|
};
|
|
63
63
|
is_default?: boolean | undefined;
|
|
64
64
|
return_address?: {
|
|
@@ -72,7 +72,7 @@ declare const shipengineUpdateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
72
72
|
company_name?: string | undefined;
|
|
73
73
|
address_line2?: string | undefined;
|
|
74
74
|
address_line3?: string | undefined;
|
|
75
|
-
address_residential_indicator?: "
|
|
75
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
76
76
|
} | undefined;
|
|
77
77
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
78
78
|
//#endregion
|
|
@@ -17,9 +17,9 @@ declare const ShipengineUpdateWarehouseInput: z.ZodObject<{
|
|
|
17
17
|
city_locality: z.ZodString;
|
|
18
18
|
state_province: z.ZodString;
|
|
19
19
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
20
|
+
unknown: "unknown";
|
|
20
21
|
yes: "yes";
|
|
21
22
|
no: "no";
|
|
22
|
-
unknown: "unknown";
|
|
23
23
|
}>>;
|
|
24
24
|
}, z.core.$strip>;
|
|
25
25
|
return_address: z.ZodOptional<z.ZodObject<{
|
|
@@ -34,9 +34,9 @@ declare const ShipengineUpdateWarehouseInput: z.ZodObject<{
|
|
|
34
34
|
city_locality: z.ZodString;
|
|
35
35
|
state_province: z.ZodString;
|
|
36
36
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
37
|
+
unknown: "unknown";
|
|
37
38
|
yes: "yes";
|
|
38
39
|
no: "no";
|
|
39
|
-
unknown: "unknown";
|
|
40
40
|
}>>;
|
|
41
41
|
}, z.core.$strip>>;
|
|
42
42
|
}, z.core.$strip>;
|
|
@@ -58,7 +58,7 @@ declare const shipengineUpdateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
58
58
|
company_name?: string | undefined;
|
|
59
59
|
address_line2?: string | undefined;
|
|
60
60
|
address_line3?: string | undefined;
|
|
61
|
-
address_residential_indicator?: "
|
|
61
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
62
62
|
};
|
|
63
63
|
is_default?: boolean | undefined;
|
|
64
64
|
return_address?: {
|
|
@@ -72,7 +72,7 @@ declare const shipengineUpdateWarehouse: import("@keystrokehq/action").WorkflowA
|
|
|
72
72
|
company_name?: string | undefined;
|
|
73
73
|
address_line2?: string | undefined;
|
|
74
74
|
address_line3?: string | undefined;
|
|
75
|
-
address_residential_indicator?: "
|
|
75
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
76
76
|
} | undefined;
|
|
77
77
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
78
78
|
//#endregion
|
|
@@ -14,18 +14,18 @@ declare const ShipengineValidateAddressInput: z.ZodObject<{
|
|
|
14
14
|
city_locality: z.ZodString;
|
|
15
15
|
state_province: z.ZodString;
|
|
16
16
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
17
|
+
unknown: "unknown";
|
|
17
18
|
yes: "yes";
|
|
18
19
|
no: "no";
|
|
19
|
-
unknown: "unknown";
|
|
20
20
|
}>>;
|
|
21
21
|
}, z.core.$loose>>;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
declare const ShipengineValidateAddressOutput: z.ZodObject<{
|
|
24
24
|
validation_results: z.ZodArray<z.ZodObject<{
|
|
25
25
|
status: z.ZodNullable<z.ZodEnum<{
|
|
26
|
+
error: "error";
|
|
26
27
|
verified: "verified";
|
|
27
28
|
unverified: "unverified";
|
|
28
|
-
error: "error";
|
|
29
29
|
warning: "warning";
|
|
30
30
|
}>>;
|
|
31
31
|
messages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -47,9 +47,9 @@ declare const ShipengineValidateAddressOutput: z.ZodObject<{
|
|
|
47
47
|
city_locality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
48
|
state_province: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
49
49
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
50
|
+
unknown: "unknown";
|
|
50
51
|
yes: "yes";
|
|
51
52
|
no: "no";
|
|
52
|
-
unknown: "unknown";
|
|
53
53
|
}>>>;
|
|
54
54
|
}, z.core.$loose>>>;
|
|
55
55
|
original_address: z.ZodNullable<z.ZodObject<{
|
|
@@ -65,9 +65,9 @@ declare const ShipengineValidateAddressOutput: z.ZodObject<{
|
|
|
65
65
|
city_locality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
66
66
|
state_province: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
67
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
68
|
+
unknown: "unknown";
|
|
68
69
|
yes: "yes";
|
|
69
70
|
no: "no";
|
|
70
|
-
unknown: "unknown";
|
|
71
71
|
}>>>;
|
|
72
72
|
}, z.core.$loose>>;
|
|
73
73
|
}, z.core.$loose>>;
|
|
@@ -85,7 +85,7 @@ declare const shipengineValidateAddress: import("@keystrokehq/action").WorkflowA
|
|
|
85
85
|
company_name?: string | undefined;
|
|
86
86
|
address_line2?: string | undefined;
|
|
87
87
|
address_line3?: string | undefined;
|
|
88
|
-
address_residential_indicator?: "
|
|
88
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
89
89
|
}[];
|
|
90
90
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
91
91
|
//#endregion
|
|
@@ -14,18 +14,18 @@ declare const ShipengineValidateAddressInput: z.ZodObject<{
|
|
|
14
14
|
city_locality: z.ZodString;
|
|
15
15
|
state_province: z.ZodString;
|
|
16
16
|
address_residential_indicator: z.ZodOptional<z.ZodEnum<{
|
|
17
|
+
unknown: "unknown";
|
|
17
18
|
yes: "yes";
|
|
18
19
|
no: "no";
|
|
19
|
-
unknown: "unknown";
|
|
20
20
|
}>>;
|
|
21
21
|
}, z.core.$loose>>;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
declare const ShipengineValidateAddressOutput: z.ZodObject<{
|
|
24
24
|
validation_results: z.ZodArray<z.ZodObject<{
|
|
25
25
|
status: z.ZodNullable<z.ZodEnum<{
|
|
26
|
+
error: "error";
|
|
26
27
|
verified: "verified";
|
|
27
28
|
unverified: "unverified";
|
|
28
|
-
error: "error";
|
|
29
29
|
warning: "warning";
|
|
30
30
|
}>>;
|
|
31
31
|
messages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -47,9 +47,9 @@ declare const ShipengineValidateAddressOutput: z.ZodObject<{
|
|
|
47
47
|
city_locality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
48
|
state_province: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
49
49
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
50
|
+
unknown: "unknown";
|
|
50
51
|
yes: "yes";
|
|
51
52
|
no: "no";
|
|
52
|
-
unknown: "unknown";
|
|
53
53
|
}>>>;
|
|
54
54
|
}, z.core.$loose>>>;
|
|
55
55
|
original_address: z.ZodNullable<z.ZodObject<{
|
|
@@ -65,9 +65,9 @@ declare const ShipengineValidateAddressOutput: z.ZodObject<{
|
|
|
65
65
|
city_locality: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
66
66
|
state_province: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
67
|
address_residential_indicator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
68
|
+
unknown: "unknown";
|
|
68
69
|
yes: "yes";
|
|
69
70
|
no: "no";
|
|
70
|
-
unknown: "unknown";
|
|
71
71
|
}>>>;
|
|
72
72
|
}, z.core.$loose>>;
|
|
73
73
|
}, z.core.$loose>>;
|
|
@@ -85,7 +85,7 @@ declare const shipengineValidateAddress: import("@keystrokehq/action").WorkflowA
|
|
|
85
85
|
company_name?: string | undefined;
|
|
86
86
|
address_line2?: string | undefined;
|
|
87
87
|
address_line3?: string | undefined;
|
|
88
|
-
address_residential_indicator?: "
|
|
88
|
+
address_residential_indicator?: "unknown" | "yes" | "no" | undefined;
|
|
89
89
|
}[];
|
|
90
90
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
91
91
|
//#endregion
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const shipengineCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/shipengine",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "ShipEngine API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your ShipEngine API key used for authenticating API requests."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shipengineCatalog = {\n \"slug\": \"shipengine\",\n \"name\": \"Shipengine\",\n \"description\": \"ShipEngine is a REST API that simplifies shipping processes by integrating with multiple carriers, allowing users to manage shipping labels, track packages, and validate addresses efficiently.\",\n \"category\": \"eCommerce\",\n \"logo\": \"https://logos.composio.dev/api/shipengine\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shipengineCatalog = {\n \"slug\": \"shipengine\",\n \"name\": \"Shipengine\",\n \"description\": \"ShipEngine is a REST API that simplifies shipping processes by integrating with multiple carriers, allowing users to manage shipping labels, track packages, and validate addresses efficiently.\",\n \"category\": \"eCommerce\",\n \"logo\": \"https://logos.composio.dev/api/shipengine\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"ShipEngine API Key\",\n \"secret\": true,\n \"description\": \"Your ShipEngine API key used for authenticating API requests.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const shipengineCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "ShipEngine API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your ShipEngine API key used for authenticating API requests.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const shipengineCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "ShipEngine API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your ShipEngine API key used for authenticating API requests.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const shipengineCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/shipengine",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "ShipEngine API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your ShipEngine API key used for authenticating API requests."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shipengineCatalog = {\n \"slug\": \"shipengine\",\n \"name\": \"Shipengine\",\n \"description\": \"ShipEngine is a REST API that simplifies shipping processes by integrating with multiple carriers, allowing users to manage shipping labels, track packages, and validate addresses efficiently.\",\n \"category\": \"eCommerce\",\n \"logo\": \"https://logos.composio.dev/api/shipengine\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shipengineCatalog = {\n \"slug\": \"shipengine\",\n \"name\": \"Shipengine\",\n \"description\": \"ShipEngine is a REST API that simplifies shipping processes by integrating with multiple carriers, allowing users to manage shipping labels, track packages, and validate addresses efficiently.\",\n \"category\": \"eCommerce\",\n \"logo\": \"https://logos.composio.dev/api/shipengine\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"ShipEngine API Key\",\n \"secret\": true,\n \"description\": \"Your ShipEngine API key used for authenticating API requests.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|