@kittycad/lib 3.1.40 → 3.1.42
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/cjs/index.cjs +1 -1
- package/dist/mjs/index.js +1 -1
- package/dist/types/src/index.d.ts +1 -7
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/models.d.ts +0 -54
- package/dist/types/src/models.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/types/__tests__/gen/users-patch_user_crm.test.d.ts +0 -2
- package/dist/types/__tests__/gen/users-patch_user_crm.test.d.ts.map +0 -1
- package/dist/types/__tests__/gen/users-put_public_form.test.d.ts +0 -2
- package/dist/types/__tests__/gen/users-put_public_form.test.d.ts.map +0 -1
- package/dist/types/__tests__/gen/users-put_user_form_self.test.d.ts +0 -2
- package/dist/types/__tests__/gen/users-put_user_form_self.test.d.ts.map +0 -1
- package/dist/types/src/api/users/patch_user_crm.d.ts +0 -20
- package/dist/types/src/api/users/patch_user_crm.d.ts.map +0 -1
- package/dist/types/src/api/users/put_public_form.d.ts +0 -22
- package/dist/types/src/api/users/put_public_form.d.ts.map +0 -1
- package/dist/types/src/api/users/put_user_form_self.d.ts +0 -22
- package/dist/types/src/api/users/put_user_form_self.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users-patch_user_crm.test.d.ts","sourceRoot":"","sources":["../../../../__tests__/gen/users-patch_user_crm.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users-put_public_form.test.d.ts","sourceRoot":"","sources":["../../../../__tests__/gen/users-put_public_form.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users-put_user_form_self.test.d.ts","sourceRoot":"","sources":["../../../../__tests__/gen/users-put_user_form_self.test.ts"],"names":[],"mappings":""}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Client } from '../../client.js';
|
|
2
|
-
import { CrmData } from '../../models.js';
|
|
3
|
-
interface PatchUserCrmInput {
|
|
4
|
-
client?: Client;
|
|
5
|
-
body: CrmData;
|
|
6
|
-
}
|
|
7
|
-
type PatchUserCrmReturn = void;
|
|
8
|
-
/**
|
|
9
|
-
* Update properties in the CRM
|
|
10
|
-
*
|
|
11
|
-
* Tags: users, hidden
|
|
12
|
-
*
|
|
13
|
-
* @param params Function parameters.
|
|
14
|
-
* @property {Client} [client] Optional client with auth token.
|
|
15
|
-
* @property {CrmData} body Request body payload
|
|
16
|
-
* @returns {Promise<PatchUserCrmReturn>} successful operation, no content
|
|
17
|
-
*/
|
|
18
|
-
export default function patch_user_crm({ client, body, }: PatchUserCrmInput): Promise<PatchUserCrmReturn>;
|
|
19
|
-
export {};
|
|
20
|
-
//# sourceMappingURL=patch_user_crm.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"patch_user_crm.d.ts","sourceRoot":"","sources":["../../../../../src/api/users/patch_user_crm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAc,MAAM,iBAAiB,CAAA;AAGpD,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAEzC,UAAU,iBAAiB;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;CACd;AAED,KAAK,kBAAkB,GAAG,IAAI,CAAA;AAE9B;;;;;;;;;GASG;AACH,wBAA8B,cAAc,CAAC,EAC3C,MAAM,EACN,IAAI,GACL,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAmCjD"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Client } from '../../client.js';
|
|
2
|
-
import { InquiryForm } from '../../models.js';
|
|
3
|
-
interface PutPublicFormInput {
|
|
4
|
-
client?: Client;
|
|
5
|
-
body: InquiryForm;
|
|
6
|
-
}
|
|
7
|
-
type PutPublicFormReturn = void;
|
|
8
|
-
/**
|
|
9
|
-
* Creates a new support/sales ticket from the website contact form. This endpoint is for untrusted
|
|
10
|
-
*
|
|
11
|
-
* users and is not authenticated.
|
|
12
|
-
*
|
|
13
|
-
* Tags: users, hidden
|
|
14
|
-
*
|
|
15
|
-
* @param params Function parameters.
|
|
16
|
-
* @property {Client} [client] Optional client with auth token.
|
|
17
|
-
* @property {InquiryForm} body Request body payload
|
|
18
|
-
* @returns {Promise<PutPublicFormReturn>} successful operation, no content
|
|
19
|
-
*/
|
|
20
|
-
export default function put_public_form({ client, body, }: PutPublicFormInput): Promise<PutPublicFormReturn>;
|
|
21
|
-
export {};
|
|
22
|
-
//# sourceMappingURL=put_public_form.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"put_public_form.d.ts","sourceRoot":"","sources":["../../../../../src/api/users/put_public_form.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAc,MAAM,iBAAiB,CAAA;AAGpD,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAE7C,UAAU,kBAAkB;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,WAAW,CAAA;CAClB;AAED,KAAK,mBAAmB,GAAG,IAAI,CAAA;AAE/B;;;;;;;;;;;GAWG;AACH,wBAA8B,eAAe,CAAC,EAC5C,MAAM,EACN,IAAI,GACL,EAAE,kBAAkB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAmCnD"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Client } from '../../client.js';
|
|
2
|
-
import { InquiryForm } from '../../models.js';
|
|
3
|
-
interface PutUserFormSelfInput {
|
|
4
|
-
client?: Client;
|
|
5
|
-
body: InquiryForm;
|
|
6
|
-
}
|
|
7
|
-
type PutUserFormSelfReturn = void;
|
|
8
|
-
/**
|
|
9
|
-
* Create a new support/sales ticket from the website contact form. This endpoint is authenticated.
|
|
10
|
-
*
|
|
11
|
-
* It gets attached to the user's account.
|
|
12
|
-
*
|
|
13
|
-
* Tags: users, hidden
|
|
14
|
-
*
|
|
15
|
-
* @param params Function parameters.
|
|
16
|
-
* @property {Client} [client] Optional client with auth token.
|
|
17
|
-
* @property {InquiryForm} body Request body payload
|
|
18
|
-
* @returns {Promise<PutUserFormSelfReturn>} successful operation, no content
|
|
19
|
-
*/
|
|
20
|
-
export default function put_user_form_self({ client, body, }: PutUserFormSelfInput): Promise<PutUserFormSelfReturn>;
|
|
21
|
-
export {};
|
|
22
|
-
//# sourceMappingURL=put_user_form_self.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"put_user_form_self.d.ts","sourceRoot":"","sources":["../../../../../src/api/users/put_user_form_self.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAc,MAAM,iBAAiB,CAAA;AAGpD,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAE7C,UAAU,oBAAoB;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,WAAW,CAAA;CAClB;AAED,KAAK,qBAAqB,GAAG,IAAI,CAAA;AAEjC;;;;;;;;;;;GAWG;AACH,wBAA8B,kBAAkB,CAAC,EAC/C,MAAM,EACN,IAAI,GACL,EAAE,oBAAoB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAmCvD"}
|