@factify/sdk 1.1.0-rc.7 → 1.1.0-rc.8
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/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/models/components/timelineeventtype.d.ts +24 -25
- package/dist/commonjs/models/components/timelineeventtype.d.ts.map +1 -1
- package/dist/commonjs/models/components/timelineeventtype.js +24 -25
- package/dist/commonjs/models/components/timelineeventtype.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/models/components/timelineeventtype.d.ts +24 -25
- package/dist/esm/models/components/timelineeventtype.d.ts.map +1 -1
- package/dist/esm/models/components/timelineeventtype.js +24 -25
- package/dist/esm/models/components/timelineeventtype.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/models/components/timelineeventtype.ts +24 -33
|
@@ -30,9 +30,9 @@ export type SDKOptions = {
|
|
|
30
30
|
export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
|
-
readonly openapiDocVersion: "1.1.0-rc.
|
|
34
|
-
readonly sdkVersion: "1.1.0-rc.
|
|
33
|
+
readonly openapiDocVersion: "1.1.0-rc.8";
|
|
34
|
+
readonly sdkVersion: "1.1.0-rc.8";
|
|
35
35
|
readonly genVersion: "2.879.6";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.1.0-rc.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.1.0-rc.8 2.879.6 1.1.0-rc.8 @factify/sdk";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -34,9 +34,9 @@ function serverURLFromOptions(options) {
|
|
|
34
34
|
}
|
|
35
35
|
exports.SDK_METADATA = {
|
|
36
36
|
language: "typescript",
|
|
37
|
-
openapiDocVersion: "1.1.0-rc.
|
|
38
|
-
sdkVersion: "1.1.0-rc.
|
|
37
|
+
openapiDocVersion: "1.1.0-rc.8",
|
|
38
|
+
sdkVersion: "1.1.0-rc.8",
|
|
39
39
|
genVersion: "2.879.6",
|
|
40
|
-
userAgent: "speakeasy-sdk/typescript 1.1.0-rc.
|
|
40
|
+
userAgent: "speakeasy-sdk/typescript 1.1.0-rc.8 2.879.6 1.1.0-rc.8 @factify/sdk",
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.js.map
|
|
@@ -1,31 +1,30 @@
|
|
|
1
1
|
import * as z from "zod/v4-mini";
|
|
2
2
|
import { OpenEnum } from "../../types/enums.js";
|
|
3
3
|
export declare const TimelineEventType: {
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
readonly TimelineEventTypeAnnotationResolved: "TIMELINE_EVENT_TYPE_ANNOTATION_RESOLVED";
|
|
4
|
+
readonly CommentCreated: "comment_created";
|
|
5
|
+
readonly CommentUpdated: "comment_updated";
|
|
6
|
+
readonly ThreadCreated: "thread_created";
|
|
7
|
+
readonly ThreadUpdated: "thread_updated";
|
|
8
|
+
readonly ApprovalVoted: "approval_voted";
|
|
9
|
+
readonly ApprovalStarted: "approval_started";
|
|
10
|
+
readonly ApprovalTerminated: "approval_terminated";
|
|
11
|
+
readonly DocumentLoaded: "document_loaded";
|
|
12
|
+
readonly ApprovalReady: "approval_ready";
|
|
13
|
+
readonly ApprovalSubmitted: "approval_submitted";
|
|
14
|
+
readonly ApprovalSkipDissemination: "approval_skip_dissemination";
|
|
15
|
+
readonly DocumentCreated: "document_created";
|
|
16
|
+
readonly DocumentUpdated: "document_updated";
|
|
17
|
+
readonly CommentDeleted: "comment_deleted";
|
|
18
|
+
readonly DocumentUserAccessGranted: "document_user_access_granted";
|
|
19
|
+
readonly DocumentUserAccessRevoked: "document_user_access_revoked";
|
|
20
|
+
readonly DocumentEntryPageDownloaded: "document_entry_page_downloaded";
|
|
21
|
+
readonly DocumentVersionUploaded: "document_version_uploaded";
|
|
22
|
+
readonly DocumentPrinted: "document_printed";
|
|
23
|
+
readonly DocumentSettingsAccessChanged: "document_settings_access_changed";
|
|
24
|
+
readonly AnnotationAdded: "annotation_added";
|
|
25
|
+
readonly AnnotationEdited: "annotation_edited";
|
|
26
|
+
readonly AnnotationDeleted: "annotation_deleted";
|
|
27
|
+
readonly AnnotationResolved: "annotation_resolved";
|
|
29
28
|
};
|
|
30
29
|
export type TimelineEventType = OpenEnum<typeof TimelineEventType>;
|
|
31
30
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timelineeventtype.d.ts","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,aAAa,CAAC;AAEjC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEhD,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"timelineeventtype.d.ts","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,aAAa,CAAC;AAEjC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEhD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;CAyBpB,CAAC;AACX,MAAM,MAAM,iBAAiB,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAEnE,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,WAAW,CACzD,iBAAiB,EACjB,OAAO,CACqC,CAAC"}
|
|
@@ -39,31 +39,30 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39
39
|
exports.TimelineEventType$inboundSchema = exports.TimelineEventType = void 0;
|
|
40
40
|
const openEnums = __importStar(require("../../types/enums.js"));
|
|
41
41
|
exports.TimelineEventType = {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
TimelineEventTypeAnnotationResolved: "TIMELINE_EVENT_TYPE_ANNOTATION_RESOLVED",
|
|
42
|
+
CommentCreated: "comment_created",
|
|
43
|
+
CommentUpdated: "comment_updated",
|
|
44
|
+
ThreadCreated: "thread_created",
|
|
45
|
+
ThreadUpdated: "thread_updated",
|
|
46
|
+
ApprovalVoted: "approval_voted",
|
|
47
|
+
ApprovalStarted: "approval_started",
|
|
48
|
+
ApprovalTerminated: "approval_terminated",
|
|
49
|
+
DocumentLoaded: "document_loaded",
|
|
50
|
+
ApprovalReady: "approval_ready",
|
|
51
|
+
ApprovalSubmitted: "approval_submitted",
|
|
52
|
+
ApprovalSkipDissemination: "approval_skip_dissemination",
|
|
53
|
+
DocumentCreated: "document_created",
|
|
54
|
+
DocumentUpdated: "document_updated",
|
|
55
|
+
CommentDeleted: "comment_deleted",
|
|
56
|
+
DocumentUserAccessGranted: "document_user_access_granted",
|
|
57
|
+
DocumentUserAccessRevoked: "document_user_access_revoked",
|
|
58
|
+
DocumentEntryPageDownloaded: "document_entry_page_downloaded",
|
|
59
|
+
DocumentVersionUploaded: "document_version_uploaded",
|
|
60
|
+
DocumentPrinted: "document_printed",
|
|
61
|
+
DocumentSettingsAccessChanged: "document_settings_access_changed",
|
|
62
|
+
AnnotationAdded: "annotation_added",
|
|
63
|
+
AnnotationEdited: "annotation_edited",
|
|
64
|
+
AnnotationDeleted: "annotation_deleted",
|
|
65
|
+
AnnotationResolved: "annotation_resolved",
|
|
67
66
|
};
|
|
68
67
|
/** @internal */
|
|
69
68
|
exports.TimelineEventType$inboundSchema = openEnums.inboundSchema(exports.TimelineEventType);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timelineeventtype.js","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGH,gEAAkD;AAGrC,QAAA,iBAAiB,GAAG;IAC/B,
|
|
1
|
+
{"version":3,"file":"timelineeventtype.js","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGH,gEAAkD;AAGrC,QAAA,iBAAiB,GAAG;IAC/B,cAAc,EAAE,iBAAiB;IACjC,cAAc,EAAE,iBAAiB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,aAAa,EAAE,gBAAgB;IAC/B,aAAa,EAAE,gBAAgB;IAC/B,eAAe,EAAE,kBAAkB;IACnC,kBAAkB,EAAE,qBAAqB;IACzC,cAAc,EAAE,iBAAiB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,iBAAiB,EAAE,oBAAoB;IACvC,yBAAyB,EAAE,6BAA6B;IACxD,eAAe,EAAE,kBAAkB;IACnC,eAAe,EAAE,kBAAkB;IACnC,cAAc,EAAE,iBAAiB;IACjC,yBAAyB,EAAE,8BAA8B;IACzD,yBAAyB,EAAE,8BAA8B;IACzD,2BAA2B,EAAE,gCAAgC;IAC7D,uBAAuB,EAAE,2BAA2B;IACpD,eAAe,EAAE,kBAAkB;IACnC,6BAA6B,EAAE,kCAAkC;IACjE,eAAe,EAAE,kBAAkB;IACnC,gBAAgB,EAAE,mBAAmB;IACrC,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;CACjC,CAAC;AAGX,gBAAgB;AACH,QAAA,+BAA+B,GAGxC,SAAS,CAAC,aAAa,CAAC,yBAAiB,CAAC,CAAC"}
|
package/dist/esm/lib/config.d.ts
CHANGED
|
@@ -30,9 +30,9 @@ export type SDKOptions = {
|
|
|
30
30
|
export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
|
-
readonly openapiDocVersion: "1.1.0-rc.
|
|
34
|
-
readonly sdkVersion: "1.1.0-rc.
|
|
33
|
+
readonly openapiDocVersion: "1.1.0-rc.8";
|
|
34
|
+
readonly sdkVersion: "1.1.0-rc.8";
|
|
35
35
|
readonly genVersion: "2.879.6";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.1.0-rc.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.1.0-rc.8 2.879.6 1.1.0-rc.8 @factify/sdk";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -30,9 +30,9 @@ export function serverURLFromOptions(options) {
|
|
|
30
30
|
}
|
|
31
31
|
export const SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
|
-
openapiDocVersion: "1.1.0-rc.
|
|
34
|
-
sdkVersion: "1.1.0-rc.
|
|
33
|
+
openapiDocVersion: "1.1.0-rc.8",
|
|
34
|
+
sdkVersion: "1.1.0-rc.8",
|
|
35
35
|
genVersion: "2.879.6",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 1.1.0-rc.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 1.1.0-rc.8 2.879.6 1.1.0-rc.8 @factify/sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
|
@@ -1,31 +1,30 @@
|
|
|
1
1
|
import * as z from "zod/v4-mini";
|
|
2
2
|
import { OpenEnum } from "../../types/enums.js";
|
|
3
3
|
export declare const TimelineEventType: {
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
readonly TimelineEventTypeAnnotationResolved: "TIMELINE_EVENT_TYPE_ANNOTATION_RESOLVED";
|
|
4
|
+
readonly CommentCreated: "comment_created";
|
|
5
|
+
readonly CommentUpdated: "comment_updated";
|
|
6
|
+
readonly ThreadCreated: "thread_created";
|
|
7
|
+
readonly ThreadUpdated: "thread_updated";
|
|
8
|
+
readonly ApprovalVoted: "approval_voted";
|
|
9
|
+
readonly ApprovalStarted: "approval_started";
|
|
10
|
+
readonly ApprovalTerminated: "approval_terminated";
|
|
11
|
+
readonly DocumentLoaded: "document_loaded";
|
|
12
|
+
readonly ApprovalReady: "approval_ready";
|
|
13
|
+
readonly ApprovalSubmitted: "approval_submitted";
|
|
14
|
+
readonly ApprovalSkipDissemination: "approval_skip_dissemination";
|
|
15
|
+
readonly DocumentCreated: "document_created";
|
|
16
|
+
readonly DocumentUpdated: "document_updated";
|
|
17
|
+
readonly CommentDeleted: "comment_deleted";
|
|
18
|
+
readonly DocumentUserAccessGranted: "document_user_access_granted";
|
|
19
|
+
readonly DocumentUserAccessRevoked: "document_user_access_revoked";
|
|
20
|
+
readonly DocumentEntryPageDownloaded: "document_entry_page_downloaded";
|
|
21
|
+
readonly DocumentVersionUploaded: "document_version_uploaded";
|
|
22
|
+
readonly DocumentPrinted: "document_printed";
|
|
23
|
+
readonly DocumentSettingsAccessChanged: "document_settings_access_changed";
|
|
24
|
+
readonly AnnotationAdded: "annotation_added";
|
|
25
|
+
readonly AnnotationEdited: "annotation_edited";
|
|
26
|
+
readonly AnnotationDeleted: "annotation_deleted";
|
|
27
|
+
readonly AnnotationResolved: "annotation_resolved";
|
|
29
28
|
};
|
|
30
29
|
export type TimelineEventType = OpenEnum<typeof TimelineEventType>;
|
|
31
30
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timelineeventtype.d.ts","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,aAAa,CAAC;AAEjC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEhD,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"timelineeventtype.d.ts","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,aAAa,CAAC;AAEjC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEhD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;CAyBpB,CAAC;AACX,MAAM,MAAM,iBAAiB,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAEnE,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,WAAW,CACzD,iBAAiB,EACjB,OAAO,CACqC,CAAC"}
|
|
@@ -3,31 +3,30 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import * as openEnums from "../../types/enums.js";
|
|
5
5
|
export const TimelineEventType = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
TimelineEventTypeAnnotationResolved: "TIMELINE_EVENT_TYPE_ANNOTATION_RESOLVED",
|
|
6
|
+
CommentCreated: "comment_created",
|
|
7
|
+
CommentUpdated: "comment_updated",
|
|
8
|
+
ThreadCreated: "thread_created",
|
|
9
|
+
ThreadUpdated: "thread_updated",
|
|
10
|
+
ApprovalVoted: "approval_voted",
|
|
11
|
+
ApprovalStarted: "approval_started",
|
|
12
|
+
ApprovalTerminated: "approval_terminated",
|
|
13
|
+
DocumentLoaded: "document_loaded",
|
|
14
|
+
ApprovalReady: "approval_ready",
|
|
15
|
+
ApprovalSubmitted: "approval_submitted",
|
|
16
|
+
ApprovalSkipDissemination: "approval_skip_dissemination",
|
|
17
|
+
DocumentCreated: "document_created",
|
|
18
|
+
DocumentUpdated: "document_updated",
|
|
19
|
+
CommentDeleted: "comment_deleted",
|
|
20
|
+
DocumentUserAccessGranted: "document_user_access_granted",
|
|
21
|
+
DocumentUserAccessRevoked: "document_user_access_revoked",
|
|
22
|
+
DocumentEntryPageDownloaded: "document_entry_page_downloaded",
|
|
23
|
+
DocumentVersionUploaded: "document_version_uploaded",
|
|
24
|
+
DocumentPrinted: "document_printed",
|
|
25
|
+
DocumentSettingsAccessChanged: "document_settings_access_changed",
|
|
26
|
+
AnnotationAdded: "annotation_added",
|
|
27
|
+
AnnotationEdited: "annotation_edited",
|
|
28
|
+
AnnotationDeleted: "annotation_deleted",
|
|
29
|
+
AnnotationResolved: "annotation_resolved",
|
|
31
30
|
};
|
|
32
31
|
/** @internal */
|
|
33
32
|
export const TimelineEventType$inboundSchema = openEnums.inboundSchema(TimelineEventType);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timelineeventtype.js","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAGlD,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,
|
|
1
|
+
{"version":3,"file":"timelineeventtype.js","sourceRoot":"","sources":["../../../../src/models/components/timelineeventtype.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAGlD,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,cAAc,EAAE,iBAAiB;IACjC,cAAc,EAAE,iBAAiB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,aAAa,EAAE,gBAAgB;IAC/B,aAAa,EAAE,gBAAgB;IAC/B,eAAe,EAAE,kBAAkB;IACnC,kBAAkB,EAAE,qBAAqB;IACzC,cAAc,EAAE,iBAAiB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,iBAAiB,EAAE,oBAAoB;IACvC,yBAAyB,EAAE,6BAA6B;IACxD,eAAe,EAAE,kBAAkB;IACnC,eAAe,EAAE,kBAAkB;IACnC,cAAc,EAAE,iBAAiB;IACjC,yBAAyB,EAAE,8BAA8B;IACzD,yBAAyB,EAAE,8BAA8B;IACzD,2BAA2B,EAAE,gCAAgC;IAC7D,uBAAuB,EAAE,2BAA2B;IACpD,eAAe,EAAE,kBAAkB;IACnC,6BAA6B,EAAE,kCAAkC;IACjE,eAAe,EAAE,kBAAkB;IACnC,gBAAgB,EAAE,mBAAmB;IACrC,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;CACjC,CAAC;AAGX,gBAAgB;AAChB,MAAM,CAAC,MAAM,+BAA+B,GAGxC,SAAS,CAAC,aAAa,CAAC,iBAAiB,CAAC,CAAC"}
|
package/jsr.json
CHANGED
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -64,9 +64,9 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
64
64
|
|
|
65
65
|
export const SDK_METADATA = {
|
|
66
66
|
language: "typescript",
|
|
67
|
-
openapiDocVersion: "1.1.0-rc.
|
|
68
|
-
sdkVersion: "1.1.0-rc.
|
|
67
|
+
openapiDocVersion: "1.1.0-rc.8",
|
|
68
|
+
sdkVersion: "1.1.0-rc.8",
|
|
69
69
|
genVersion: "2.879.6",
|
|
70
70
|
userAgent:
|
|
71
|
-
"speakeasy-sdk/typescript 1.1.0-rc.
|
|
71
|
+
"speakeasy-sdk/typescript 1.1.0-rc.8 2.879.6 1.1.0-rc.8 @factify/sdk",
|
|
72
72
|
} as const;
|
|
@@ -7,39 +7,30 @@ import * as openEnums from "../../types/enums.js";
|
|
|
7
7
|
import { OpenEnum } from "../../types/enums.js";
|
|
8
8
|
|
|
9
9
|
export const TimelineEventType = {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"TIMELINE_EVENT_TYPE_DOCUMENT_VERSION_UPLOADED",
|
|
35
|
-
TimelineEventTypeDocumentPrinted: "TIMELINE_EVENT_TYPE_DOCUMENT_PRINTED",
|
|
36
|
-
TimelineEventTypeDocumentSettingsAccessChanged:
|
|
37
|
-
"TIMELINE_EVENT_TYPE_DOCUMENT_SETTINGS_ACCESS_CHANGED",
|
|
38
|
-
TimelineEventTypeAnnotationAdded: "TIMELINE_EVENT_TYPE_ANNOTATION_ADDED",
|
|
39
|
-
TimelineEventTypeAnnotationEdited: "TIMELINE_EVENT_TYPE_ANNOTATION_EDITED",
|
|
40
|
-
TimelineEventTypeAnnotationDeleted: "TIMELINE_EVENT_TYPE_ANNOTATION_DELETED",
|
|
41
|
-
TimelineEventTypeAnnotationResolved:
|
|
42
|
-
"TIMELINE_EVENT_TYPE_ANNOTATION_RESOLVED",
|
|
10
|
+
CommentCreated: "comment_created",
|
|
11
|
+
CommentUpdated: "comment_updated",
|
|
12
|
+
ThreadCreated: "thread_created",
|
|
13
|
+
ThreadUpdated: "thread_updated",
|
|
14
|
+
ApprovalVoted: "approval_voted",
|
|
15
|
+
ApprovalStarted: "approval_started",
|
|
16
|
+
ApprovalTerminated: "approval_terminated",
|
|
17
|
+
DocumentLoaded: "document_loaded",
|
|
18
|
+
ApprovalReady: "approval_ready",
|
|
19
|
+
ApprovalSubmitted: "approval_submitted",
|
|
20
|
+
ApprovalSkipDissemination: "approval_skip_dissemination",
|
|
21
|
+
DocumentCreated: "document_created",
|
|
22
|
+
DocumentUpdated: "document_updated",
|
|
23
|
+
CommentDeleted: "comment_deleted",
|
|
24
|
+
DocumentUserAccessGranted: "document_user_access_granted",
|
|
25
|
+
DocumentUserAccessRevoked: "document_user_access_revoked",
|
|
26
|
+
DocumentEntryPageDownloaded: "document_entry_page_downloaded",
|
|
27
|
+
DocumentVersionUploaded: "document_version_uploaded",
|
|
28
|
+
DocumentPrinted: "document_printed",
|
|
29
|
+
DocumentSettingsAccessChanged: "document_settings_access_changed",
|
|
30
|
+
AnnotationAdded: "annotation_added",
|
|
31
|
+
AnnotationEdited: "annotation_edited",
|
|
32
|
+
AnnotationDeleted: "annotation_deleted",
|
|
33
|
+
AnnotationResolved: "annotation_resolved",
|
|
43
34
|
} as const;
|
|
44
35
|
export type TimelineEventType = OpenEnum<typeof TimelineEventType>;
|
|
45
36
|
|