Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/disaster-recovery-example/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=

"@protobufjs/utf8@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=
version "1.1.1"
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.1.tgz#eaee5900122c110a3dbcb728c0597014a2621774"
integrity sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==

"@types/long@^4.0.0", "@types/long@^4.0.1":
version "4.0.1"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"protobuild": "pbjs -t static-module -w commonjs -o proto/ts/DocumentHeader.js proto/document_header.proto && pbts -o proto/ts/DocumentHeader.d.ts proto/ts/DocumentHeader.js"
},
"dependencies": {
"futurejs": "2.2.0",
"futurejs": "^2.2.1",
"joi": "^18.0.2",
"miscreant": "^0.3.2",
"node-fetch": "2.6.12",
"protobufjs": "^7.2.5"
"protobufjs": "^8.1.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
Expand All @@ -41,8 +41,8 @@
"jest": "^26.4.1",
"jest-extended": "^0.11.5",
"prompt": "^1.0.0",
"protobufjs-cli": "^1.1.1",
"shelljs": "^0.8.4",
"protobufjs-cli": "^2.2.0",
"shelljs": "^0.10.0",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
Expand Down
42 changes: 30 additions & 12 deletions proto/ts/DocumentHeader.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ export namespace ironcorelabs {

/** DataControlPlatformHeader segmentId */
segmentId?: (number|Long|null);

/** Unknown fields preserved while decoding */
$unknowns?: Uint8Array[];
}

/** Represents a DataControlPlatformHeader. */
Expand All @@ -25,6 +28,9 @@ export namespace ironcorelabs {
*/
constructor(properties?: ironcorelabs.proto.IDataControlPlatformHeader);

/** Unknown fields preserved while decoding */
public $unknowns?: Uint8Array[];

/** DataControlPlatformHeader documentId. */
public documentId: string;

Expand Down Expand Up @@ -102,18 +108,21 @@ export namespace ironcorelabs {
public toJSON(): { [k: string]: any };

/**
* Gets the default type url for DataControlPlatformHeader
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns The default type url
* Gets the type url for DataControlPlatformHeader
* @param [prefix] Custom type url prefix, defaults to `"type.googleapis.com"`
* @returns The type url
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
public static getTypeUrl(prefix?: string): string;
}

/** Properties of a SaaSShieldHeader. */
interface ISaaSShieldHeader {

/** SaaSShieldHeader tenantId */
tenantId?: (string|null);

/** Unknown fields preserved while decoding */
$unknowns?: Uint8Array[];
}

/** Represents a SaaSShieldHeader. */
Expand All @@ -125,6 +134,9 @@ export namespace ironcorelabs {
*/
constructor(properties?: ironcorelabs.proto.ISaaSShieldHeader);

/** Unknown fields preserved while decoding */
public $unknowns?: Uint8Array[];

/** SaaSShieldHeader tenantId. */
public tenantId: string;

Expand Down Expand Up @@ -199,11 +211,11 @@ export namespace ironcorelabs {
public toJSON(): { [k: string]: any };

/**
* Gets the default type url for SaaSShieldHeader
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns The default type url
* Gets the type url for SaaSShieldHeader
* @param [prefix] Custom type url prefix, defaults to `"type.googleapis.com"`
* @returns The type url
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
public static getTypeUrl(prefix?: string): string;
}

/** Properties of a v3DocumentHeader. */
Expand All @@ -217,6 +229,9 @@ export namespace ironcorelabs {

/** v3DocumentHeader saasShield */
saasShield?: (ironcorelabs.proto.ISaaSShieldHeader|null);

/** Unknown fields preserved while decoding */
$unknowns?: Uint8Array[];
}

/** Represents a v3DocumentHeader. */
Expand All @@ -228,6 +243,9 @@ export namespace ironcorelabs {
*/
constructor(properties?: ironcorelabs.proto.Iv3DocumentHeader);

/** Unknown fields preserved while decoding */
public $unknowns?: Uint8Array[];

/** v3DocumentHeader sig. */
public sig: Uint8Array;

Expand Down Expand Up @@ -311,11 +329,11 @@ export namespace ironcorelabs {
public toJSON(): { [k: string]: any };

/**
* Gets the default type url for v3DocumentHeader
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns The default type url
* Gets the type url for v3DocumentHeader
* @param [prefix] Custom type url prefix, defaults to `"type.googleapis.com"`
* @returns The type url
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
public static getTypeUrl(prefix?: string): string;
}
}
}
Loading