@seamapi/types 1.203.0 → 1.204.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/dist/connect.cjs +10 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -2
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +10 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -3
- package/src/lib/seam/connect/route-types.ts +5 -2
package/dist/connect.d.cts
CHANGED
|
@@ -17521,6 +17521,7 @@ declare const _default: {
|
|
|
17521
17521
|
type: string;
|
|
17522
17522
|
};
|
|
17523
17523
|
user_identifier_key: {
|
|
17524
|
+
description: string;
|
|
17524
17525
|
type: string;
|
|
17525
17526
|
};
|
|
17526
17527
|
};
|
|
@@ -17757,6 +17758,10 @@ declare const _default: {
|
|
|
17757
17758
|
description: string;
|
|
17758
17759
|
type: string;
|
|
17759
17760
|
};
|
|
17761
|
+
user_identifier_key: {
|
|
17762
|
+
description: string;
|
|
17763
|
+
type: string;
|
|
17764
|
+
};
|
|
17760
17765
|
};
|
|
17761
17766
|
type: string;
|
|
17762
17767
|
};
|
|
@@ -28634,8 +28639,9 @@ interface Routes {
|
|
|
28634
28639
|
queryParams: {};
|
|
28635
28640
|
jsonBody: {};
|
|
28636
28641
|
commonParams: {
|
|
28642
|
+
/** Returns webviews that can be accessed by the provided user_identifier_key. */
|
|
28637
28643
|
user_identifier_key?: string | undefined;
|
|
28638
|
-
/** Returns
|
|
28644
|
+
/** Returns webviews whose custom_metadata contains all of the provided key/value pairs. */
|
|
28639
28645
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
28640
28646
|
limit?: number;
|
|
28641
28647
|
};
|
|
@@ -28724,7 +28730,9 @@ interface Routes {
|
|
|
28724
28730
|
queryParams: {};
|
|
28725
28731
|
jsonBody: {};
|
|
28726
28732
|
commonParams: {
|
|
28727
|
-
/** Returns
|
|
28733
|
+
/** Returns accounts that can be accessed by the provided user_identifier_key. */
|
|
28734
|
+
user_identifier_key?: string | undefined;
|
|
28735
|
+
/** Returns accounts whose custom_metadata contains all of the provided key/value pairs. */
|
|
28728
28736
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
28729
28737
|
};
|
|
28730
28738
|
formData: {};
|
|
@@ -9674,6 +9674,7 @@ declare const _default: {
|
|
|
9674
9674
|
type: string;
|
|
9675
9675
|
};
|
|
9676
9676
|
user_identifier_key: {
|
|
9677
|
+
description: string;
|
|
9677
9678
|
type: string;
|
|
9678
9679
|
};
|
|
9679
9680
|
};
|
|
@@ -9910,6 +9911,10 @@ declare const _default: {
|
|
|
9910
9911
|
description: string;
|
|
9911
9912
|
type: string;
|
|
9912
9913
|
};
|
|
9914
|
+
user_identifier_key: {
|
|
9915
|
+
description: string;
|
|
9916
|
+
type: string;
|
|
9917
|
+
};
|
|
9913
9918
|
};
|
|
9914
9919
|
type: string;
|
|
9915
9920
|
};
|
|
@@ -8203,11 +8203,14 @@ export default {
|
|
|
8203
8203
|
additionalProperties: {
|
|
8204
8204
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
8205
8205
|
},
|
|
8206
|
-
description:
|
|
8206
|
+
description: 'Returns webviews whose custom_metadata contains all of the provided key/value pairs.',
|
|
8207
8207
|
type: 'object',
|
|
8208
8208
|
},
|
|
8209
8209
|
limit: { default: 500, format: 'float', type: 'number' },
|
|
8210
|
-
user_identifier_key: {
|
|
8210
|
+
user_identifier_key: {
|
|
8211
|
+
description: 'Returns webviews that can be accessed by the provided user_identifier_key.',
|
|
8212
|
+
type: 'string',
|
|
8213
|
+
},
|
|
8211
8214
|
},
|
|
8212
8215
|
type: 'object',
|
|
8213
8216
|
},
|
|
@@ -8364,9 +8367,13 @@ export default {
|
|
|
8364
8367
|
additionalProperties: {
|
|
8365
8368
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
8366
8369
|
},
|
|
8367
|
-
description:
|
|
8370
|
+
description: 'Returns accounts whose custom_metadata contains all of the provided key/value pairs.',
|
|
8368
8371
|
type: 'object',
|
|
8369
8372
|
},
|
|
8373
|
+
user_identifier_key: {
|
|
8374
|
+
description: 'Returns accounts that can be accessed by the provided user_identifier_key.',
|
|
8375
|
+
type: 'string',
|
|
8376
|
+
},
|
|
8370
8377
|
},
|
|
8371
8378
|
type: 'object',
|
|
8372
8379
|
},
|