@zapier/zapier-sdk 0.84.3 → 0.85.0
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/AGENTS.md +3 -1
- package/CHANGELOG.md +12 -0
- package/README.md +205 -177
- package/dist/experimental.cjs +31 -33
- package/dist/experimental.d.mts +26 -2
- package/dist/experimental.d.ts +26 -2
- package/dist/experimental.mjs +31 -33
- package/dist/{index-B6Hbs-2p.d.mts → index-BxgeAXDh.d.mts} +67 -12
- package/dist/{index-B6Hbs-2p.d.ts → index-BxgeAXDh.d.ts} +67 -12
- package/dist/index.cjs +31 -33
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +31 -33
- package/package.json +3 -3
package/dist/experimental.mjs
CHANGED
|
@@ -408,51 +408,36 @@ function decodeConcatCursor(incoming) {
|
|
|
408
408
|
}
|
|
409
409
|
return { index: 0, cursor: incoming };
|
|
410
410
|
}
|
|
411
|
-
function
|
|
411
|
+
async function concatLists({
|
|
412
412
|
sources,
|
|
413
413
|
pageSize = 100,
|
|
414
414
|
cursor
|
|
415
415
|
}) {
|
|
416
416
|
if (sources.length === 0) {
|
|
417
|
-
|
|
418
|
-
return Object.assign(Promise.resolve(empty), {
|
|
419
|
-
[Symbol.asyncIterator]: async function* () {
|
|
420
|
-
yield empty;
|
|
421
|
-
}
|
|
422
|
-
});
|
|
417
|
+
return { data: [] };
|
|
423
418
|
}
|
|
424
419
|
const pageFunction = async (options) => {
|
|
425
|
-
let { index, cursor:
|
|
420
|
+
let { index, cursor: listCursor } = decodeConcatCursor(options.cursor);
|
|
426
421
|
while (index < sources.length) {
|
|
427
|
-
const page = await sources[index]({ cursor:
|
|
428
|
-
const
|
|
429
|
-
if (page.data.length === 0 && !
|
|
422
|
+
const page = await sources[index]({ cursor: listCursor });
|
|
423
|
+
const hasMoreInList = page.nextCursor != null;
|
|
424
|
+
if (page.data.length === 0 && !hasMoreInList) {
|
|
430
425
|
index++;
|
|
431
|
-
|
|
426
|
+
listCursor = void 0;
|
|
432
427
|
continue;
|
|
433
428
|
}
|
|
434
429
|
return {
|
|
435
430
|
data: page.data,
|
|
436
|
-
nextCursor:
|
|
431
|
+
nextCursor: hasMoreInList ? encodeConcatCursor(index, page.nextCursor) : index < sources.length - 1 ? encodeConcatCursor(index + 1, void 0) : void 0
|
|
437
432
|
};
|
|
438
433
|
}
|
|
439
434
|
return { data: [] };
|
|
440
435
|
};
|
|
441
|
-
const
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
return result.value;
|
|
447
|
-
});
|
|
448
|
-
return Object.assign(firstPagePromise, {
|
|
449
|
-
[Symbol.asyncIterator]: async function* () {
|
|
450
|
-
yield await firstPagePromise;
|
|
451
|
-
for await (const page of { [Symbol.asyncIterator]: () => iterator }) {
|
|
452
|
-
yield page;
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
});
|
|
436
|
+
const result = await paginateBuffered(pageFunction, {
|
|
437
|
+
pageSize,
|
|
438
|
+
cursor
|
|
439
|
+
}).next();
|
|
440
|
+
return result.done ? { data: [] } : result.value;
|
|
456
441
|
}
|
|
457
442
|
var parseOrThrow = (schema, input, { adaptError } = {}) => {
|
|
458
443
|
const result = schema.safeParse(input);
|
|
@@ -787,6 +772,13 @@ function createPaginatedFunction(coreFn, options) {
|
|
|
787
772
|
[Symbol.asyncIterator]() {
|
|
788
773
|
return pageStream;
|
|
789
774
|
},
|
|
775
|
+
pages: function() {
|
|
776
|
+
return {
|
|
777
|
+
[Symbol.asyncIterator]() {
|
|
778
|
+
return pageStream;
|
|
779
|
+
}
|
|
780
|
+
};
|
|
781
|
+
},
|
|
790
782
|
items: function() {
|
|
791
783
|
return {
|
|
792
784
|
[Symbol.asyncIterator]: async function* () {
|
|
@@ -5281,7 +5273,7 @@ function parseDeprecationDate(value) {
|
|
|
5281
5273
|
}
|
|
5282
5274
|
|
|
5283
5275
|
// src/sdk-version.ts
|
|
5284
|
-
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.
|
|
5276
|
+
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.85.0" : void 0) || "unknown";
|
|
5285
5277
|
|
|
5286
5278
|
// src/utils/open-url.ts
|
|
5287
5279
|
var nodePrefix = "node:";
|
|
@@ -7016,6 +7008,7 @@ function transformConnectionItem(item) {
|
|
|
7016
7008
|
is_private: item.is_private,
|
|
7017
7009
|
shared_with_all: item.shared_with_all,
|
|
7018
7010
|
title: item.title,
|
|
7011
|
+
slug: item.slug,
|
|
7019
7012
|
lastchanged: item.lastchanged,
|
|
7020
7013
|
is_stale: item.is_stale,
|
|
7021
7014
|
is_shared: item.is_shared,
|
|
@@ -8587,13 +8580,13 @@ var tableIdResolver = defineResolver({
|
|
|
8587
8580
|
listItems: ({ imports, context, cursor }) => {
|
|
8588
8581
|
const includeShared = context?.includeShared;
|
|
8589
8582
|
if (includeShared) {
|
|
8590
|
-
return
|
|
8583
|
+
return concatLists({
|
|
8591
8584
|
sources: [
|
|
8592
|
-
({ cursor:
|
|
8593
|
-
({ cursor:
|
|
8585
|
+
({ cursor: listCursor }) => imports.listTablesInternal({ cursor: listCursor }),
|
|
8586
|
+
({ cursor: listCursor }) => imports.listTablesInternal({
|
|
8594
8587
|
includeShared: true,
|
|
8595
8588
|
includePersonal: false,
|
|
8596
|
-
cursor:
|
|
8589
|
+
cursor: listCursor
|
|
8597
8590
|
})
|
|
8598
8591
|
],
|
|
8599
8592
|
cursor
|
|
@@ -10038,6 +10031,11 @@ var ConnectionItemSchema = ConnectionItemSchema$1;
|
|
|
10038
10031
|
// src/formatters/connection.ts
|
|
10039
10032
|
function formatConnectionItem(item) {
|
|
10040
10033
|
const details = [];
|
|
10034
|
+
const appKey = item.app_key ?? "unknown";
|
|
10035
|
+
details.push({
|
|
10036
|
+
text: item.slug ? `App: ${appKey} | App Slug: ${item.slug}` : `App: ${appKey}`,
|
|
10037
|
+
style: "accent"
|
|
10038
|
+
});
|
|
10041
10039
|
if (item.identifier) {
|
|
10042
10040
|
details.push({
|
|
10043
10041
|
text: `Identifier: ${item.identifier}`,
|
|
@@ -62,6 +62,7 @@ declare const ConnectionItemSchema: z.ZodObject<{
|
|
|
62
62
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63
63
|
date: z.ZodString;
|
|
64
64
|
is_invite_only: z.ZodBoolean;
|
|
65
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
65
66
|
lastchanged: z.ZodOptional<z.ZodString>;
|
|
66
67
|
destination_selected_api: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
68
|
is_private: z.ZodBoolean;
|
|
@@ -228,27 +229,43 @@ interface SdkPage<T = unknown> {
|
|
|
228
229
|
nextCursor?: string;
|
|
229
230
|
}
|
|
230
231
|
/**
|
|
231
|
-
* Return type of every paginated SDK method. The
|
|
232
|
+
* Return type of every paginated SDK method. The documented surface is:
|
|
232
233
|
*
|
|
233
|
-
* -
|
|
234
|
-
* - an AsyncIterable
|
|
234
|
+
* - `await` the result for the first page (`SdkPage<TItem>`),
|
|
235
|
+
* - `.pages()` for an AsyncIterable over pages, and
|
|
236
|
+
* - `.items()` for an AsyncIterable over individual items across pages.
|
|
235
237
|
*
|
|
236
|
-
*
|
|
237
|
-
*
|
|
238
|
-
*
|
|
239
|
-
*
|
|
238
|
+
* `.pages()` and `.items()` return plain iterables (not thenables), so they
|
|
239
|
+
* survive being returned from an `async` function; the result itself is a
|
|
240
|
+
* thenable, so an `async` boundary silently collapses it to the first page.
|
|
241
|
+
* Named so paginated plugin signatures serialize as
|
|
242
|
+
* `PaginatedSdkResult<AppItem>` in `.d.ts` rather than expanding the full
|
|
243
|
+
* intersection at every callsite.
|
|
240
244
|
*
|
|
241
245
|
* The faces share one underlying cursor, so a result is consumed once:
|
|
242
246
|
*
|
|
243
247
|
* - `await` / `.then()` read the buffered first page without starting the
|
|
244
248
|
* stream, so awaiting is a repeatable peek and you can still iterate the
|
|
245
249
|
* result afterward.
|
|
246
|
-
* -
|
|
247
|
-
*
|
|
248
|
-
* does not replay page 1). To read a
|
|
249
|
-
* method again for a fresh result.
|
|
250
|
+
* - `.pages()`, `.items()`, and the deprecated bare iteration are views
|
|
251
|
+
* over one page stream, so consuming any view drains the others: the
|
|
252
|
+
* second view yields nothing (it does not replay page 1). To read a
|
|
253
|
+
* result more than once, call the method again for a fresh result.
|
|
250
254
|
*/
|
|
251
|
-
interface PaginatedSdkResult<TItem> extends Promise<SdkPage<TItem
|
|
255
|
+
interface PaginatedSdkResult<TItem> extends Promise<SdkPage<TItem>> {
|
|
256
|
+
/**
|
|
257
|
+
* @deprecated Iterate `.pages()` instead. Bare iteration works but is easy
|
|
258
|
+
* to break: because the result is also a thenable, an `async` boundary
|
|
259
|
+
* collapses it to its first page and the iterable is silently lost.
|
|
260
|
+
*
|
|
261
|
+
* Deliberately no runtime deprecation warning: this face is not scheduled
|
|
262
|
+
* for deletion (removing it is a breaking change deferred to a separate
|
|
263
|
+
* decision), and structural consumers such as the CLI's page streaming
|
|
264
|
+
* detect pagination via `Symbol.asyncIterator`, so a warning would fire on
|
|
265
|
+
* the SDK's own machinery.
|
|
266
|
+
*/
|
|
267
|
+
[Symbol.asyncIterator](): AsyncIterator<SdkPage<TItem>>;
|
|
268
|
+
pages(): AsyncIterable<SdkPage<TItem>>;
|
|
252
269
|
items(): AsyncIterable<TItem>;
|
|
253
270
|
}
|
|
254
271
|
type PaginatedSdkFunction<TOptions, TItem> = (options: TOptions) => PaginatedSdkResult<TItem>;
|
|
@@ -5904,6 +5921,7 @@ declare const listConnectionsPlugin: MethodPlugin<"listConnections", {
|
|
|
5904
5921
|
id: string;
|
|
5905
5922
|
account_id: string;
|
|
5906
5923
|
title?: string | null | undefined;
|
|
5924
|
+
slug?: string | null | undefined;
|
|
5907
5925
|
lastchanged?: string | undefined;
|
|
5908
5926
|
destination_selected_api?: string | null | undefined;
|
|
5909
5927
|
is_stale?: string | undefined;
|
|
@@ -6152,6 +6170,7 @@ declare const getConnectionPlugin: MethodPlugin<"getConnection", {
|
|
|
6152
6170
|
id: string;
|
|
6153
6171
|
account_id: string;
|
|
6154
6172
|
title?: string | null | undefined;
|
|
6173
|
+
slug?: string | null | undefined;
|
|
6155
6174
|
lastchanged?: string | undefined;
|
|
6156
6175
|
destination_selected_api?: string | null | undefined;
|
|
6157
6176
|
is_stale?: string | undefined;
|
|
@@ -6195,6 +6214,7 @@ declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
|
6195
6214
|
id: string;
|
|
6196
6215
|
account_id: string;
|
|
6197
6216
|
title?: string | null | undefined;
|
|
6217
|
+
slug?: string | null | undefined;
|
|
6198
6218
|
lastchanged?: string | undefined;
|
|
6199
6219
|
destination_selected_api?: string | null | undefined;
|
|
6200
6220
|
is_stale?: string | undefined;
|
|
@@ -6246,6 +6266,7 @@ declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
|
6246
6266
|
id: string;
|
|
6247
6267
|
account_id: string;
|
|
6248
6268
|
title?: string | null | undefined;
|
|
6269
|
+
slug?: string | null | undefined;
|
|
6249
6270
|
lastchanged?: string | undefined;
|
|
6250
6271
|
destination_selected_api?: string | null | undefined;
|
|
6251
6272
|
is_stale?: string | undefined;
|
|
@@ -6288,6 +6309,7 @@ declare const findUniqueConnectionPlugin: MethodPlugin<"findUniqueConnection", {
|
|
|
6288
6309
|
id: string;
|
|
6289
6310
|
account_id: string;
|
|
6290
6311
|
title?: string | null | undefined;
|
|
6312
|
+
slug?: string | null | undefined;
|
|
6291
6313
|
lastchanged?: string | undefined;
|
|
6292
6314
|
destination_selected_api?: string | null | undefined;
|
|
6293
6315
|
is_stale?: string | undefined;
|
|
@@ -6339,6 +6361,7 @@ declare const findUniqueConnectionPlugin: MethodPlugin<"findUniqueConnection", {
|
|
|
6339
6361
|
id: string;
|
|
6340
6362
|
account_id: string;
|
|
6341
6363
|
title?: string | null | undefined;
|
|
6364
|
+
slug?: string | null | undefined;
|
|
6342
6365
|
lastchanged?: string | undefined;
|
|
6343
6366
|
destination_selected_api?: string | null | undefined;
|
|
6344
6367
|
is_stale?: string | undefined;
|
|
@@ -7557,6 +7580,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7557
7580
|
id: string;
|
|
7558
7581
|
account_id: string;
|
|
7559
7582
|
title?: string | null | undefined;
|
|
7583
|
+
slug?: string | null | undefined;
|
|
7560
7584
|
lastchanged?: string | undefined;
|
|
7561
7585
|
destination_selected_api?: string | null | undefined;
|
|
7562
7586
|
is_stale?: string | undefined;
|
|
@@ -7593,6 +7617,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7593
7617
|
id: string;
|
|
7594
7618
|
account_id: string;
|
|
7595
7619
|
title?: string | null | undefined;
|
|
7620
|
+
slug?: string | null | undefined;
|
|
7596
7621
|
lastchanged?: string | undefined;
|
|
7597
7622
|
destination_selected_api?: string | null | undefined;
|
|
7598
7623
|
is_stale?: string | undefined;
|
|
@@ -7635,6 +7660,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7635
7660
|
id: string;
|
|
7636
7661
|
account_id: string;
|
|
7637
7662
|
title?: string | null | undefined;
|
|
7663
|
+
slug?: string | null | undefined;
|
|
7638
7664
|
lastchanged?: string | undefined;
|
|
7639
7665
|
destination_selected_api?: string | null | undefined;
|
|
7640
7666
|
is_stale?: string | undefined;
|
|
@@ -7677,6 +7703,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7677
7703
|
id: string;
|
|
7678
7704
|
account_id: string;
|
|
7679
7705
|
title?: string | null | undefined;
|
|
7706
|
+
slug?: string | null | undefined;
|
|
7680
7707
|
lastchanged?: string | undefined;
|
|
7681
7708
|
destination_selected_api?: string | null | undefined;
|
|
7682
7709
|
is_stale?: string | undefined;
|
|
@@ -7729,6 +7756,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7729
7756
|
id: string;
|
|
7730
7757
|
account_id: string;
|
|
7731
7758
|
title?: string | null | undefined;
|
|
7759
|
+
slug?: string | null | undefined;
|
|
7732
7760
|
lastchanged?: string | undefined;
|
|
7733
7761
|
destination_selected_api?: string | null | undefined;
|
|
7734
7762
|
is_stale?: string | undefined;
|
|
@@ -7765,6 +7793,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7765
7793
|
id: string;
|
|
7766
7794
|
account_id: string;
|
|
7767
7795
|
title?: string | null | undefined;
|
|
7796
|
+
slug?: string | null | undefined;
|
|
7768
7797
|
lastchanged?: string | undefined;
|
|
7769
7798
|
destination_selected_api?: string | null | undefined;
|
|
7770
7799
|
is_stale?: string | undefined;
|
|
@@ -7807,6 +7836,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7807
7836
|
id: string;
|
|
7808
7837
|
account_id: string;
|
|
7809
7838
|
title?: string | null | undefined;
|
|
7839
|
+
slug?: string | null | undefined;
|
|
7810
7840
|
lastchanged?: string | undefined;
|
|
7811
7841
|
destination_selected_api?: string | null | undefined;
|
|
7812
7842
|
is_stale?: string | undefined;
|
|
@@ -7849,6 +7879,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7849
7879
|
id: string;
|
|
7850
7880
|
account_id: string;
|
|
7851
7881
|
title?: string | null | undefined;
|
|
7882
|
+
slug?: string | null | undefined;
|
|
7852
7883
|
lastchanged?: string | undefined;
|
|
7853
7884
|
destination_selected_api?: string | null | undefined;
|
|
7854
7885
|
is_stale?: string | undefined;
|
|
@@ -9092,6 +9123,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9092
9123
|
id: string;
|
|
9093
9124
|
account_id: string;
|
|
9094
9125
|
title?: string | null | undefined;
|
|
9126
|
+
slug?: string | null | undefined;
|
|
9095
9127
|
lastchanged?: string | undefined;
|
|
9096
9128
|
destination_selected_api?: string | null | undefined;
|
|
9097
9129
|
is_stale?: string | undefined;
|
|
@@ -9129,6 +9161,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9129
9161
|
id: string;
|
|
9130
9162
|
account_id: string;
|
|
9131
9163
|
title?: string | null | undefined;
|
|
9164
|
+
slug?: string | null | undefined;
|
|
9132
9165
|
lastchanged?: string | undefined;
|
|
9133
9166
|
destination_selected_api?: string | null | undefined;
|
|
9134
9167
|
is_stale?: string | undefined;
|
|
@@ -9172,6 +9205,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9172
9205
|
id: string;
|
|
9173
9206
|
account_id: string;
|
|
9174
9207
|
title?: string | null | undefined;
|
|
9208
|
+
slug?: string | null | undefined;
|
|
9175
9209
|
lastchanged?: string | undefined;
|
|
9176
9210
|
destination_selected_api?: string | null | undefined;
|
|
9177
9211
|
is_stale?: string | undefined;
|
|
@@ -9223,6 +9257,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9223
9257
|
id: string;
|
|
9224
9258
|
account_id: string;
|
|
9225
9259
|
title?: string | null | undefined;
|
|
9260
|
+
slug?: string | null | undefined;
|
|
9226
9261
|
lastchanged?: string | undefined;
|
|
9227
9262
|
destination_selected_api?: string | null | undefined;
|
|
9228
9263
|
is_stale?: string | undefined;
|
|
@@ -9265,6 +9300,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9265
9300
|
id: string;
|
|
9266
9301
|
account_id: string;
|
|
9267
9302
|
title?: string | null | undefined;
|
|
9303
|
+
slug?: string | null | undefined;
|
|
9268
9304
|
lastchanged?: string | undefined;
|
|
9269
9305
|
destination_selected_api?: string | null | undefined;
|
|
9270
9306
|
is_stale?: string | undefined;
|
|
@@ -9316,6 +9352,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9316
9352
|
id: string;
|
|
9317
9353
|
account_id: string;
|
|
9318
9354
|
title?: string | null | undefined;
|
|
9355
|
+
slug?: string | null | undefined;
|
|
9319
9356
|
lastchanged?: string | undefined;
|
|
9320
9357
|
destination_selected_api?: string | null | undefined;
|
|
9321
9358
|
is_stale?: string | undefined;
|
|
@@ -9368,6 +9405,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9368
9405
|
id: string;
|
|
9369
9406
|
account_id: string;
|
|
9370
9407
|
title?: string | null | undefined;
|
|
9408
|
+
slug?: string | null | undefined;
|
|
9371
9409
|
lastchanged?: string | undefined;
|
|
9372
9410
|
destination_selected_api?: string | null | undefined;
|
|
9373
9411
|
is_stale?: string | undefined;
|
|
@@ -9418,6 +9456,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9418
9456
|
id: string;
|
|
9419
9457
|
account_id: string;
|
|
9420
9458
|
title?: string | null | undefined;
|
|
9459
|
+
slug?: string | null | undefined;
|
|
9421
9460
|
lastchanged?: string | undefined;
|
|
9422
9461
|
destination_selected_api?: string | null | undefined;
|
|
9423
9462
|
is_stale?: string | undefined;
|
|
@@ -9455,6 +9494,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9455
9494
|
id: string;
|
|
9456
9495
|
account_id: string;
|
|
9457
9496
|
title?: string | null | undefined;
|
|
9497
|
+
slug?: string | null | undefined;
|
|
9458
9498
|
lastchanged?: string | undefined;
|
|
9459
9499
|
destination_selected_api?: string | null | undefined;
|
|
9460
9500
|
is_stale?: string | undefined;
|
|
@@ -9491,6 +9531,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9491
9531
|
id: string;
|
|
9492
9532
|
account_id: string;
|
|
9493
9533
|
title?: string | null | undefined;
|
|
9534
|
+
slug?: string | null | undefined;
|
|
9494
9535
|
lastchanged?: string | undefined;
|
|
9495
9536
|
destination_selected_api?: string | null | undefined;
|
|
9496
9537
|
is_stale?: string | undefined;
|
|
@@ -9534,6 +9575,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9534
9575
|
id: string;
|
|
9535
9576
|
account_id: string;
|
|
9536
9577
|
title?: string | null | undefined;
|
|
9578
|
+
slug?: string | null | undefined;
|
|
9537
9579
|
lastchanged?: string | undefined;
|
|
9538
9580
|
destination_selected_api?: string | null | undefined;
|
|
9539
9581
|
is_stale?: string | undefined;
|
|
@@ -9575,6 +9617,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9575
9617
|
id: string;
|
|
9576
9618
|
account_id: string;
|
|
9577
9619
|
title?: string | null | undefined;
|
|
9620
|
+
slug?: string | null | undefined;
|
|
9578
9621
|
lastchanged?: string | undefined;
|
|
9579
9622
|
destination_selected_api?: string | null | undefined;
|
|
9580
9623
|
is_stale?: string | undefined;
|
|
@@ -9626,6 +9669,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9626
9669
|
id: string;
|
|
9627
9670
|
account_id: string;
|
|
9628
9671
|
title?: string | null | undefined;
|
|
9672
|
+
slug?: string | null | undefined;
|
|
9629
9673
|
lastchanged?: string | undefined;
|
|
9630
9674
|
destination_selected_api?: string | null | undefined;
|
|
9631
9675
|
is_stale?: string | undefined;
|
|
@@ -9668,6 +9712,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9668
9712
|
id: string;
|
|
9669
9713
|
account_id: string;
|
|
9670
9714
|
title?: string | null | undefined;
|
|
9715
|
+
slug?: string | null | undefined;
|
|
9671
9716
|
lastchanged?: string | undefined;
|
|
9672
9717
|
destination_selected_api?: string | null | undefined;
|
|
9673
9718
|
is_stale?: string | undefined;
|
|
@@ -9709,6 +9754,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9709
9754
|
id: string;
|
|
9710
9755
|
account_id: string;
|
|
9711
9756
|
title?: string | null | undefined;
|
|
9757
|
+
slug?: string | null | undefined;
|
|
9712
9758
|
lastchanged?: string | undefined;
|
|
9713
9759
|
destination_selected_api?: string | null | undefined;
|
|
9714
9760
|
is_stale?: string | undefined;
|
|
@@ -9760,6 +9806,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9760
9806
|
id: string;
|
|
9761
9807
|
account_id: string;
|
|
9762
9808
|
title?: string | null | undefined;
|
|
9809
|
+
slug?: string | null | undefined;
|
|
9763
9810
|
lastchanged?: string | undefined;
|
|
9764
9811
|
destination_selected_api?: string | null | undefined;
|
|
9765
9812
|
is_stale?: string | undefined;
|
|
@@ -11741,6 +11788,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11741
11788
|
id: string;
|
|
11742
11789
|
account_id: string;
|
|
11743
11790
|
title?: string | null | undefined;
|
|
11791
|
+
slug?: string | null | undefined;
|
|
11744
11792
|
lastchanged?: string | undefined;
|
|
11745
11793
|
destination_selected_api?: string | null | undefined;
|
|
11746
11794
|
is_stale?: string | undefined;
|
|
@@ -11777,6 +11825,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11777
11825
|
id: string;
|
|
11778
11826
|
account_id: string;
|
|
11779
11827
|
title?: string | null | undefined;
|
|
11828
|
+
slug?: string | null | undefined;
|
|
11780
11829
|
lastchanged?: string | undefined;
|
|
11781
11830
|
destination_selected_api?: string | null | undefined;
|
|
11782
11831
|
is_stale?: string | undefined;
|
|
@@ -11819,6 +11868,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11819
11868
|
id: string;
|
|
11820
11869
|
account_id: string;
|
|
11821
11870
|
title?: string | null | undefined;
|
|
11871
|
+
slug?: string | null | undefined;
|
|
11822
11872
|
lastchanged?: string | undefined;
|
|
11823
11873
|
destination_selected_api?: string | null | undefined;
|
|
11824
11874
|
is_stale?: string | undefined;
|
|
@@ -11861,6 +11911,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11861
11911
|
id: string;
|
|
11862
11912
|
account_id: string;
|
|
11863
11913
|
title?: string | null | undefined;
|
|
11914
|
+
slug?: string | null | undefined;
|
|
11864
11915
|
lastchanged?: string | undefined;
|
|
11865
11916
|
destination_selected_api?: string | null | undefined;
|
|
11866
11917
|
is_stale?: string | undefined;
|
|
@@ -11913,6 +11964,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11913
11964
|
id: string;
|
|
11914
11965
|
account_id: string;
|
|
11915
11966
|
title?: string | null | undefined;
|
|
11967
|
+
slug?: string | null | undefined;
|
|
11916
11968
|
lastchanged?: string | undefined;
|
|
11917
11969
|
destination_selected_api?: string | null | undefined;
|
|
11918
11970
|
is_stale?: string | undefined;
|
|
@@ -11949,6 +12001,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11949
12001
|
id: string;
|
|
11950
12002
|
account_id: string;
|
|
11951
12003
|
title?: string | null | undefined;
|
|
12004
|
+
slug?: string | null | undefined;
|
|
11952
12005
|
lastchanged?: string | undefined;
|
|
11953
12006
|
destination_selected_api?: string | null | undefined;
|
|
11954
12007
|
is_stale?: string | undefined;
|
|
@@ -11991,6 +12044,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11991
12044
|
id: string;
|
|
11992
12045
|
account_id: string;
|
|
11993
12046
|
title?: string | null | undefined;
|
|
12047
|
+
slug?: string | null | undefined;
|
|
11994
12048
|
lastchanged?: string | undefined;
|
|
11995
12049
|
destination_selected_api?: string | null | undefined;
|
|
11996
12050
|
is_stale?: string | undefined;
|
|
@@ -12033,6 +12087,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12033
12087
|
id: string;
|
|
12034
12088
|
account_id: string;
|
|
12035
12089
|
title?: string | null | undefined;
|
|
12090
|
+
slug?: string | null | undefined;
|
|
12036
12091
|
lastchanged?: string | undefined;
|
|
12037
12092
|
destination_selected_api?: string | null | undefined;
|
|
12038
12093
|
is_stale?: string | undefined;
|